interface documentation

class INegotiated(ISSLTransport): (source)

Known implementations: twisted.protocols.tls.TLSMemoryBIOProtocol

View In Hierarchy

A TLS based transport that supports using ALPN/NPN to negotiate the protocol to be used inside the encrypted tunnel.
Attribute negotiated​Protocol No summary

Inherited from ISSLTransport:

Method get​Peer​Certificate Return an object with the peer's certificate info.

Inherited from ITCPTransport (via ISSLTransport):

Method abort​Connection Close the connection abruptly.
Method get​Host Returns IPv4Address or IPv6Address.
Method get​Peer Returns IPv4Address or IPv6Address.
Method get​Tcp​Keep​Alive Return if SO_KEEPALIVE is enabled.
Method get​Tcp​No​Delay Return if TCP_NODELAY is enabled.
Method lose​Write​Connection Half-close the write side of a TCP connection.
Method set​Tcp​Keep​Alive Enable/disable SO_KEEPALIVE.
Method set​Tcp​No​Delay Enable/disable TCP_NODELAY.

Inherited from ITransport (via ISSLTransport, ITCPTransport):

Method lose​Connection Close my connection, after writing all pending data.
Method write Write some data to the physical connection, in sequence, in a non-blocking fashion.
Method write​Sequence Write an iterable of byte strings to the physical connection.
negotiatedProtocol = (source)
The protocol selected to be spoken using ALPN/NPN. The result from ALPN is preferred to the result from NPN if both were used. If the remote peer does not support ALPN or NPN, or neither NPN or ALPN are available on this machine, will be None. Otherwise, will be the name of the selected protocol as bytes. Note that until the handshake has completed this property may incorrectly return None: wait until data has been received before trusting it (see https://twistedmatrix.com/trac/ticket/6024).