Documentation ¶
Index ¶
- func Dial(destination, name string, i *identity.TokenId, timeout time.Duration) (transport.Connection, error)
- func Listen(bindAddress, name string, i *identity.TokenId, ...) (io.Closer, error)
- type AddressParser
- type Connection
- func (self *Connection) ClearReadTimeout() error
- func (self *Connection) ClearWriteTimeout() error
- func (self *Connection) Close() error
- func (self *Connection) Conn() net.Conn
- func (self *Connection) Detail() *transport.ConnectionDetail
- func (self *Connection) PeerCertificates() []*x509.Certificate
- func (self *Connection) Reader() io.Reader
- func (self *Connection) SetReadTimeout(t time.Duration) error
- func (self *Connection) SetWriteTimeout(t time.Duration) error
- func (self *Connection) Writer() io.Writer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type AddressParser ¶
type AddressParser struct{}
type Connection ¶
type Connection struct {
// contains filtered or unexported fields
}
Connection represents a concrete QUIC connection.
func (*Connection) ClearReadTimeout ¶
func (self *Connection) ClearReadTimeout() error
ClearReadTimeout clears the read time for all current and future reads
func (*Connection) ClearWriteTimeout ¶
func (self *Connection) ClearWriteTimeout() error
ClearWriteTimeout clears the write timeout for all current and future writes
func (*Connection) Close ¶
func (self *Connection) Close() error
Close method on the transport.Connection interface.
func (*Connection) Conn ¶
func (self *Connection) Conn() net.Conn
QUIC doesn't provide an underlying net.Conn
func (*Connection) Detail ¶
func (self *Connection) Detail() *transport.ConnectionDetail
func (*Connection) PeerCertificates ¶
func (self *Connection) PeerCertificates() []*x509.Certificate
func (*Connection) Reader ¶
func (self *Connection) Reader() io.Reader
Reader method on the transport.Connection interface.
func (*Connection) SetReadTimeout ¶
func (self *Connection) SetReadTimeout(t time.Duration) error
SetReadTimeout sets the read timeout to the provided duration.
func (*Connection) SetWriteTimeout ¶
func (self *Connection) SetWriteTimeout(t time.Duration) error
SetWriteTimeout sets the write timeout to the provided duration.
func (*Connection) Writer ¶
func (self *Connection) Writer() io.Writer
Writer method on the transport.Connection interface.
Click to show internal directories.
Click to hide internal directories.