コード例 #1
0
 internal UpnpSearcher(IIPAddressesProvider ipprovider)
 {
     _ipprovider  = ipprovider;
     UdpClients   = CreateUdpClients();
     _devices     = new Dictionary <Uri, NatDevice>();
     _lastFetched = new Dictionary <IPAddress, DateTime>();
 }
コード例 #2
0
ファイル: UpnpSearcher.cs プロジェクト: since2014/Open.NAT
        internal UpnpSearcher(IIPAddressesProvider ipprovider)
        {
            _ipprovider = ipprovider;
            Sockets = CreateSockets();
            _devices = new Dictionary<Uri, NatDevice>();
			_lastFetched = new Dictionary<IPAddress, DateTime>();
        }
コード例 #3
0
ファイル: PmpSearcher.cs プロジェクト: avanlau/SAEA
 internal PmpSearcher(IIPAddressesProvider ipprovider)
 {
     _ipprovider = ipprovider;
     _timeout    = 250;
     CreateSocketsAndAddGateways();
 }
コード例 #4
0
ファイル: PmpSearcher.cs プロジェクト: AnotherAltr/Rc.Core
 internal PmpSearcher(IIPAddressesProvider ipprovider)
 {
     _ipprovider = ipprovider;
     _timeout = 250;
     CreateSocketsAndAddGateways();
 }