package spdy
import "k8s.io/apimachinery/pkg/util/httpstream/spdy"
Index ¶
- Constants
- func NewClientConnection(conn net.Conn) (httpstream.Connection, error)
- func NewResponseUpgrader() httpstream.ResponseUpgrader
- func NewServerConnection(conn net.Conn, newStreamHandler httpstream.NewStreamHandler) (httpstream.Connection, error)
- type SpdyRoundTripper
- func NewRoundTripper(tlsConfig *tls.Config, followRedirects, requireSameHostRedirects bool) *SpdyRoundTripper
- func NewRoundTripperWithProxy(tlsConfig *tls.Config, followRedirects, requireSameHostRedirects bool, proxier func(*http.Request) (*url.URL, error)) *SpdyRoundTripper
- func (s *SpdyRoundTripper) Dial(req *http.Request) (net.Conn, error)
- func (s *SpdyRoundTripper) NewConnection(resp *http.Response) (httpstream.Connection, error)
- func (s *SpdyRoundTripper) RoundTrip(req *http.Request) (*http.Response, error)
- func (s *SpdyRoundTripper) TLSClientConfig() *tls.Config
Constants ¶
const HeaderSpdy31 = "SPDY/3.1"
Functions ¶
func NewClientConnection ¶
func NewClientConnection(conn net.Conn) (httpstream.Connection, error)
NewClientConnection creates a new SPDY client connection.
func NewResponseUpgrader ¶
func NewResponseUpgrader() httpstream.ResponseUpgrader
NewResponseUpgrader returns a new httpstream.ResponseUpgrader that is capable of upgrading HTTP responses using SPDY/3.1 via the spdystream package.
func NewServerConnection ¶
func NewServerConnection(conn net.Conn, newStreamHandler httpstream.NewStreamHandler) (httpstream.Connection, error)
NewServerConnection creates a new SPDY server connection. newStreamHandler will be invoked when the server receives a newly created stream from the client.
Types ¶
type SpdyRoundTripper ¶
type SpdyRoundTripper struct { // Dialer is the dialer used to connect. Used if non-nil. Dialer *net.Dialer // contains filtered or unexported fields }
SpdyRoundTripper knows how to upgrade an HTTP request to one that supports multiplexed streams. After RoundTrip() is invoked, Conn will be set and usable. SpdyRoundTripper implements the UpgradeRoundTripper interface.
func NewRoundTripper ¶
func NewRoundTripper(tlsConfig *tls.Config, followRedirects, requireSameHostRedirects bool) *SpdyRoundTripper
NewRoundTripper creates a new SpdyRoundTripper that will use the specified tlsConfig.
func NewRoundTripperWithProxy ¶
func NewRoundTripperWithProxy(tlsConfig *tls.Config, followRedirects, requireSameHostRedirects bool, proxier func(*http.Request) (*url.URL, error)) *SpdyRoundTripper
NewRoundTripperWithProxy creates a new SpdyRoundTripper that will use the specified tlsConfig and proxy func.
func (*SpdyRoundTripper) Dial ¶
Dial implements k8s.io/apimachinery/pkg/util/net.Dialer.
func (*SpdyRoundTripper) NewConnection ¶
func (s *SpdyRoundTripper) NewConnection(resp *http.Response) (httpstream.Connection, error)
NewConnection validates the upgrade response, creating and returning a new httpstream.Connection if there were no errors.
func (*SpdyRoundTripper) RoundTrip ¶
RoundTrip executes the Request and upgrades it. After a successful upgrade, clients may call SpdyRoundTripper.Connection() to retrieve the upgraded connection.
func (*SpdyRoundTripper) TLSClientConfig ¶
func (s *SpdyRoundTripper) TLSClientConfig() *tls.Config
TLSClientConfig implements pkg/util/net.TLSClientConfigHolder for proper TLS checking during proxying with a spdy roundtripper.
Source Files ¶
connection.go roundtripper.go upgrade.go
- Version
- v0.19.3-rc.0
- Published
- Aug 21, 2020
- Platform
- js/wasm
- Imports
- 26 packages
- Last checked
- 16 hours ago –
Tools for package owners.