Class SSL.Port
- Description
Interface similar to Stdio.Port.
- Inherit
socket
inherit Stdio.Port : socket
- Variable
accept_queue
protected
ADT.Queue
SSL.Port.accept_queue- Description
Queue of new SSL.Files that have been negotiated.
- Variable
ctx
Context
SSL.Port.ctx- Description
Context to use for the connections.
- Note
The Context is created (by calling context_factory()) on first access to the variable.
- Note
Read only
- Method
create
SSL.Port SSL.Port(
Context
|void
ctx
)- Description
Create a new port for accepting SSL connections.
- Parameter
ctx
Context to be used with this Port.
If left out, it will be created on demand on first access by calling context_factory().
- See also