/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Configuration/ |
H A D | SocketElement.cs | 55 …[ConfigurationProperty(ConfigurationStrings.IPProtectionLevel, DefaultValue = IPProtectionLevel.Un… 56 public IPProtectionLevel IPProtectionLevel property in System.Net.Configuration.SocketElement 58 get { return (IPProtectionLevel)this[this.ipProtectionLevel]; } 81 … new ConfigurationProperty(ConfigurationStrings.IPProtectionLevel, typeof(IPProtectionLevel), 82 IPProtectionLevel.Unspecified, ConfigurationPropertyOptions.None);
|
H A D | SettingsSection.cs | 157 this.ipProtectionLevel = section.Socket.IPProtectionLevel; in SettingsSectionInternal() 265 internal IPProtectionLevel IPProtectionLevel property in System.Net.Configuration.SettingsSectionInternal 340 IPProtectionLevel ipProtectionLevel;
|
H A D | ConfigurationStrings.cs | 95 internal const string IPProtectionLevel = "ipProtectionLevel"; field in System.Net.Configuration.ConfigurationStrings
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/tests/FunctionalTests/ |
H A D | SocketOptionNameTest.cs | 453 … [InlineData(IPProtectionLevel.EdgeRestricted, AddressFamily.InterNetwork, SocketOptionLevel.IP)] 454 [InlineData(IPProtectionLevel.Restricted, AddressFamily.InterNetwork, SocketOptionLevel.IP)] 455 … [InlineData(IPProtectionLevel.Unrestricted, AddressFamily.InterNetwork, SocketOptionLevel.IP)] 457 … [InlineData(IPProtectionLevel.Restricted, AddressFamily.InterNetworkV6, SocketOptionLevel.IPv6)] 473 [InlineData(IPProtectionLevel.EdgeRestricted, AddressFamily.InterNetwork)] 474 [InlineData(IPProtectionLevel.Restricted, AddressFamily.InterNetwork)] 475 [InlineData(IPProtectionLevel.Unrestricted, AddressFamily.InterNetwork)] 476 [InlineData(IPProtectionLevel.EdgeRestricted, AddressFamily.InterNetworkV6)] 477 [InlineData(IPProtectionLevel.Restricted, AddressFamily.InterNetworkV6)] 478 [InlineData(IPProtectionLevel.Unrestricted, AddressFamily.InterNetworkV6)] [all …]
|
H A D | AgnosticListenerTest.cs | 123 [InlineData(true, IPProtectionLevel.Unrestricted)] 124 [InlineData(false, IPProtectionLevel.EdgeRestricted)] 125 public void AllowNatTraversal_Windows(bool allow, IPProtectionLevel resultLevel) in AllowNatTraversal_Windows() 129 …ultLevel, (int)l.Server.GetSocketOption(SocketOptionLevel.IP, SocketOptionName.IPProtectionLevel)); in AllowNatTraversal_Windows()
|
H A D | UdpClientTest.cs | 471 [InlineData(true, IPProtectionLevel.Unrestricted)] 472 [InlineData(false, IPProtectionLevel.EdgeRestricted)] 473 public void AllowNatTraversal_Windows(bool allow, IPProtectionLevel resultLevel) in AllowNatTraversal_Windows() 478 …ultLevel, (int)c.Client.GetSocketOption(SocketOptionLevel.IP, SocketOptionName.IPProtectionLevel)); in AllowNatTraversal_Windows()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/ReferenceSources/ |
H A D | SettingsSectionInternal.cs | 21 internal readonly IPProtectionLevel IPProtectionLevel = IPProtectionLevel.Unspecified; field in System.Net.Configuration.SettingsSectionInternal
|
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKCommunicator/GKNetCore/DHT/ |
H A D | DHTHelper.cs | 278 socket.SetIPProtectionLevel(IPProtectionLevel.Unrestricted); in SetIPProtectionLevelUnrestricted() 280 const int IPProtectionLevel = 23; in SetIPProtectionLevelUnrestricted() 284 … socket.SetSocketOption(SocketOptionLevel.IPv6, (SocketOptionName)IPProtectionLevel, Unrestricted); in SetIPProtectionLevelUnrestricted() 288 … socket.SetSocketOption(SocketOptionLevel.IP, (SocketOptionName)IPProtectionLevel, Unrestricted); in SetIPProtectionLevelUnrestricted()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/ |
H A D | IPProtectionLevel.cs | 7 public enum IPProtectionLevel enum
|
H A D | SocketOptionName.cs | 130 IPProtectionLevel = 23, enumerator
|
H A D | TCPListener.cs | 117 …_serverSocket.SetIPProtectionLevel(allowed ? IPProtectionLevel.Unrestricted : IPProtectionLevel.Ed… in AllowNatTraversal()
|
H A D | UDPClient.cs | 197 …_clientSocket.SetIPProtectionLevel(allowed ? IPProtectionLevel.Unrestricted : IPProtectionLevel.Ed… in AllowNatTraversal()
|
H A D | SocketPal.Windows.cs | 561 … socket.SetSocketOption(optionLevel, SocketOptionName.IPProtectionLevel, protectionLevel); in SetIPProtectionLevel()
|
H A D | Socket.cs | 1972 public void SetIPProtectionLevel(IPProtectionLevel level) in SetIPProtectionLevel() 1974 if (level == IPProtectionLevel.Unspecified) in SetIPProtectionLevel()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/ |
H A D | IPProtectionLevel.cs | 9 public enum IPProtectionLevel enum
|
H A D | SocketOptionName.cs | 267 IPProtectionLevel = 23, //IP_PROTECTION_LEVEL enumerator
|
H A D | TCPListener.cs | 151 m_ServerSocket.SetIPProtectionLevel(IPProtectionLevel.Unrestricted); in AllowNatTraversal() 154 m_ServerSocket.SetIPProtectionLevel(IPProtectionLevel.EdgeRestricted); in AllowNatTraversal()
|
H A D | UDPClient.cs | 249 m_ClientSocket.SetIPProtectionLevel(IPProtectionLevel.Unrestricted); in AllowNatTraversal() 252 m_ClientSocket.SetIPProtectionLevel(IPProtectionLevel.EdgeRestricted); in AllowNatTraversal()
|
H A D | Socket.cs | 174 … IPProtectionLevel defaultProtectionLevel = SettingsSectionInternal.Section.IPProtectionLevel; in Socket() 175 if (defaultProtectionLevel != IPProtectionLevel.Unspecified) { in Socket() 2312 public void SetIPProtectionLevel(IPProtectionLevel level) { in SetIPProtectionLevel() 2313 if (level == IPProtectionLevel.Unspecified) { in SetIPProtectionLevel() 2318 … SetSocketOption(SocketOptionLevel.IPv6, SocketOptionName.IPProtectionLevel, (int)level); in SetIPProtectionLevel() 2321 … SetSocketOption(SocketOptionLevel.IP, SocketOptionName.IPProtectionLevel, (int)level); in SetIPProtectionLevel()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/System.Net.Sockets/ |
H A D | TypeForwarders.cs | 25 …em.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IPProtectionLevel))]
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/Facades/ |
H A D | System.Net.Sockets.cs | 18 …em.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IPProtectionLevel))]
|
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/ |
H A D | System.Net.Sockets.cs | 19 …em.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IPProtectionLevel))]
|
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/ |
H A D | System.Net.Sockets.cs | 19 …em.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IPProtectionLevel))]
|
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/ |
H A D | System.Net.Sockets.cs | 19 …em.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.Sockets.IPProtectionLevel))]
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/ref/ |
H A D | System.Net.Sockets.cs | 58 public enum IPProtectionLevel enum 330 public void SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level) { throw null; } in SetIPProtectionLevel() 435 IPProtectionLevel = 23, enumerator
|