Home
last modified time | relevance | path

Searched refs:IPProtectionLevel (Results 1 – 25 of 44) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Configuration/
H A DSocketElement.cs55 …[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 DSettingsSection.cs157 this.ipProtectionLevel = section.Socket.IPProtectionLevel; in SettingsSectionInternal()
265 internal IPProtectionLevel IPProtectionLevel property in System.Net.Configuration.SettingsSectionInternal
340 IPProtectionLevel ipProtectionLevel;
H A DConfigurationStrings.cs95 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 DSocketOptionNameTest.cs453 … [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 DAgnosticListenerTest.cs123 [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 DUdpClientTest.cs471 [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 DSettingsSectionInternal.cs21 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 DDHTHelper.cs278 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 DIPProtectionLevel.cs7 public enum IPProtectionLevel enum
H A DSocketOptionName.cs130 IPProtectionLevel = 23, enumerator
H A DTCPListener.cs117 …_serverSocket.SetIPProtectionLevel(allowed ? IPProtectionLevel.Unrestricted : IPProtectionLevel.Ed… in AllowNatTraversal()
H A DUDPClient.cs197 …_clientSocket.SetIPProtectionLevel(allowed ? IPProtectionLevel.Unrestricted : IPProtectionLevel.Ed… in AllowNatTraversal()
H A DSocketPal.Windows.cs561 … socket.SetSocketOption(optionLevel, SocketOptionName.IPProtectionLevel, protectionLevel); in SetIPProtectionLevel()
H A DSocket.cs1972 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 DIPProtectionLevel.cs9 public enum IPProtectionLevel enum
H A DSocketOptionName.cs267 IPProtectionLevel = 23, //IP_PROTECTION_LEVEL enumerator
H A DTCPListener.cs151 m_ServerSocket.SetIPProtectionLevel(IPProtectionLevel.Unrestricted); in AllowNatTraversal()
154 m_ServerSocket.SetIPProtectionLevel(IPProtectionLevel.EdgeRestricted); in AllowNatTraversal()
H A DUDPClient.cs249 m_ClientSocket.SetIPProtectionLevel(IPProtectionLevel.Unrestricted); in AllowNatTraversal()
252 m_ClientSocket.SetIPProtectionLevel(IPProtectionLevel.EdgeRestricted); in AllowNatTraversal()
H A DSocket.cs174IPProtectionLevel 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 DTypeForwarders.cs25 …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 DSystem.Net.Sockets.cs18 …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 DSystem.Net.Sockets.cs19 …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 DSystem.Net.Sockets.cs19 …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 DSystem.Net.Sockets.cs19 …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 DSystem.Net.Sockets.cs58 public enum IPProtectionLevel enum
330 public void SetIPProtectionLevel(System.Net.Sockets.IPProtectionLevel level) { throw null; } in SetIPProtectionLevel()
435 IPProtectionLevel = 23, enumerator

12