SSLAdapter

Base class for a connection adapter with TLS encryption.

Constructors

this
this(IConnection next)
Undocumented in source.

Members

Functions

getHostCertificate
SSLCertificate getHostCertificate()

Retrieves the host (local) certificate.

getPeerCertificate
SSLCertificate getPeerCertificate()

Retrieves the peer (remote) certificate.

setHostName
void setHostName(string hostname, ushort port, string service)

Specifies the expected host name (used for peer verification).

Inherited Members

From ConnectionAdapter

next
IConnection next;

The next connection in the chain (towards the raw transport).

state
ConnectionState state [@property getter]
Undocumented in source. Be warned that the author may not have intended to support it.
send
void send(Data[] data, int priority)

Queue Data for sending.

send
alias send = IConnection.send
Undocumented in source.
disconnect
void disconnect(string reason, DisconnectType type)

Terminate the connection.

onConnect
void onConnect()
Undocumented in source. Be warned that the author may not have intended to support it.
onReadData
void onReadData(Data data)
Undocumented in source. Be warned that the author may not have intended to support it.
onDisconnect
void onDisconnect(string reason, DisconnectType type)
Undocumented in source. Be warned that the author may not have intended to support it.
onBufferFlushed
void onBufferFlushed()
Undocumented in source. Be warned that the author may not have intended to support it.
handleConnect
ConnectHandler handleConnect [@property setter]

Callback for when a connection has been established.

connectHandler
ConnectHandler connectHandler;
Undocumented in source.
handleReadData
ReadDataHandler handleReadData [@property setter]

Callback setter for when new data is read.

readDataHandler
ReadDataHandler readDataHandler;
Undocumented in source.
handleDisconnect
DisconnectHandler handleDisconnect [@property setter]

Callback setter for when a connection was closed.

disconnectHandler
DisconnectHandler disconnectHandler;
Undocumented in source.
handleBufferFlushed
BufferFlushedHandler handleBufferFlushed [@property setter]

Callback setter for when all queued data has been written.

bufferFlushedHandler
BufferFlushedHandler bufferFlushedHandler;
Undocumented in source.

Meta