SSLServerSocket.this

Constructs a new SSLServerSocket. This constructor is similar to ServerSocket, except it takes a SSLCtx as provided by PKI.

  1. this(ushort port, SSLCtx ctx, int backlog, bool reuse)
  2. this(Address addr, SSLCtx ctx, int backlog, bool reuse)
    class SSLServerSocket
    this
    (,,
    int backlog = 32
    ,
    bool reuse = false
    )

Parameters

addr Address

the address to bind and listen on.

ctx SSLCtx

the provided SSLCtx

backlog int

the number of connections to backlog before refusing connection

reuse bool

if enabled, allow rebinding of existing ip/port

Meta