github.com/shogo82148/std@v1.22.1-0.20240327122250-4e474527810c/net/http/jar.go (about)

     1  // Copyright 2011 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package http
     6  
     7  import (
     8  	"github.com/shogo82148/std/net/url"
     9  )
    10  
    11  // CookieJarは、HTTPリクエストでのCookieのストレージと使用を管理します。
    12  //
    13  // CookieJarの実装は、複数のゴルーチンによる同時使用に対して安全である必要があります。
    14  //
    15  // net/http/cookiejarパッケージはCookieJarの実装を提供します。
    16  type CookieJar interface {
    17  	SetCookies(u *url.URL, cookies []*Cookie)
    18  
    19  	Cookies(u *url.URL) []*Cookie
    20  }