Skip to content
Chris Dimitrov edited this page Jan 7, 2019 · 1 revision
  public class QuicListener

Public methods

Method Description
void QuicListener(int port) Initializes a new instance of the class and sets the port that QUIC will listen on.
void Start() Runs the listener
void Close() Stops the listener
QuicClient AcceptQuicClient() Blocks and waits for a new client connection. Does not block other incoming packets

  public class QuicClient

Public methods

Method Description
void QuicClient() Initializes a new instance of the class
QuicConnection Connect(string ip, int port) Connects to a remote server by a given IP and Port
Clone this wiki locally