public MsQuicConnectionListener(MsQuicTransportOptions options, IHostApplicationLifetime lifetime, IMsQuicTrace log, EndPoint endpoint) { _api = new MsQuicApi(); _log = log; _transportContext = new MsQuicTransportContext(lifetime, _log, options); EndPoint = endpoint; }
public MsQuicTransportContext(IHostApplicationLifetime appLifetime, IMsQuicTrace log, MsQuicTransportOptions options) { AppLifetime = appLifetime; Log = log; Options = options; }