Home
last modified time | relevance | path

Searched refs:localEP (Results 1 – 25 of 40) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net.Sockets/
H A DUdpClientTest.cs133 IPEndPoint localEP; in Constructor3()
150 localEP = s.LocalEndPoint as IPEndPoint; in Constructor3()
170 localEP = s.LocalEndPoint as IPEndPoint; in Constructor3()
214 IPEndPoint localEP; in Constructor4()
233 localEP = s.LocalEndPoint as IPEndPoint; in Constructor4()
266 IPEndPoint localEP; in Constructor5()
283 localEP = s.LocalEndPoint as IPEndPoint; in Constructor5()
307 localEP = s.LocalEndPoint as IPEndPoint; in Constructor5()
384 IPEndPoint localEP; in Constructor6()
1186 public MyUdpClient (IPEndPoint localEP) in MyUdpClient() argument
[all …]
H A DTcpClientTest.cs88 IPEndPoint localEP = new IPEndPoint (IPAddress.Loopback, port); in CloseTest()
89 using (SocketResponder sr = new SocketResponder (localEP, s => CloseRequestHandler (s))) { in CloseTest()
114 using (SocketResponder sr = new SocketResponder (localEP, s => CloseRequestHandler (s))) { in CloseTest()
/dports/www/xsp/xsp-4.5/src/Mono.WebServer.XSP/
H A DXSPWorker.cs52 readonly IPEndPoint localEP; field in Mono.WebServer.XSP.XSPWorker
60 public XSPWorker (Socket client, EndPoint localEP, ApplicationServer server, in XSPWorker() argument
88 this.localEP = (IPEndPoint) localEP; in XSPWorker()
153 int port = localEP.Port; in RunInternal()
190 host.ProcessRequest (requestId, localEP, in RunInternal()
H A DXSPApplicationHost.cs51 var localEP = new IPEndPoint (localEPAddr, localEPPort); in ProcessRequest()
53 …ProcessRequest (reqId, localEP, remoteEP, verb, path, queryString, protocol, inputBuffer, redirect… in ProcessRequest()
56 public void ProcessRequest(int reqId, IPEndPoint localEP, IPEndPoint remoteEP, in ProcessRequest() argument
64 localEP, remoteEP, verb, path, queryString, in ProcessRequest()
H A DXSPWorkerRequest.cs140 EndPoint localEP, EndPoint remoteEP, in XSPWorkerRequest() argument
199 localPort = ((IPEndPoint) localEP).Port; in XSPWorkerRequest()
200 localAddress = ((IPEndPoint) localEP).Address.ToString(); in XSPWorkerRequest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Web.Services/Test/System.Web.Services.Protocols/
H A DSoapHttpClientProtocolTest.cs53 IPEndPoint localEP = new IPEndPoint (IPAddress.Loopback, 5000); in OutParametersTest()
54 using (SocketResponder sr = new SocketResponder (localEP, s => OutParametersResponse (s))) { in OutParametersTest()
72 IPEndPoint localEP = new IPEndPoint (IPAddress.Loopback, 5000); in FaultTest()
73 using (SocketResponder sr = new SocketResponder (localEP, s => FaultResponse_Qualified (s))) { in FaultTest()
98 using (SocketResponder sr = new SocketResponder (localEP, s => FaultResponse_Unqualified (s))) { in FaultTest()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/src/System/Net/Sockets/
H A DTCPListener.cs20 public TcpListener(IPEndPoint localEP) in TcpListener() argument
22 if (NetEventSource.IsEnabled) NetEventSource.Enter(this, localEP); in TcpListener()
23 if (localEP == null) in TcpListener()
25 throw new ArgumentNullException(nameof(localEP)); in TcpListener()
27 _serverSocketEP = localEP; in TcpListener()
H A DTCPClient.cs46 public TcpClient(IPEndPoint localEP) in TcpClient() argument
48 if (NetEventSource.IsEnabled) NetEventSource.Enter(this, localEP); in TcpClient()
50 if (localEP == null) in TcpClient()
52 throw new ArgumentNullException(nameof(localEP)); in TcpClient()
55 _family = localEP.AddressFamily; // set before calling CreateSocket in TcpClient()
57 _clientSocket.Bind(localEP); in TcpClient()
H A DUDPClient.cs66 IPEndPoint localEP; in UdpClient()
71 localEP = new IPEndPoint(IPAddress.Any, port); in UdpClient()
75 localEP = new IPEndPoint(IPAddress.IPv6Any, port); in UdpClient()
80 _clientSocket.Bind(localEP); in UdpClient()
85 public UdpClient(IPEndPoint localEP) in UdpClient() argument
88 if (localEP == null) in UdpClient()
90 throw new ArgumentNullException(nameof(localEP)); in UdpClient()
95 _family = localEP.AddressFamily; in UdpClient()
99 _clientSocket.Bind(localEP); in UdpClient()
H A DSocket.cs678 public void Bind(EndPoint localEP) in Bind() argument
680 if (NetEventSource.IsEnabled) NetEventSource.Enter(this, localEP); in Bind()
688 if (localEP == null) in Bind()
690 throw new ArgumentNullException(nameof(localEP)); in Bind()
696 EndPoint endPointSnapshot = localEP; in Bind()
704 internal void InternalBind(EndPoint localEP) in InternalBind() argument
706 if (NetEventSource.IsEnabled) NetEventSource.Enter(this, localEP); in InternalBind()
715 if (localEP is DnsEndPoint) in InternalBind()
721 EndPoint endPointSnapshot = localEP; in InternalBind()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Sockets/
H A DUDPClient.cs96 IPEndPoint localEP; in UdpClient()
100 localEP = new IPEndPoint(IPAddress.Any, port); in UdpClient()
103 localEP = new IPEndPoint(IPAddress.IPv6Any, port); in UdpClient()
108 Client.Bind(localEP); in UdpClient()
118 public UdpClient(IPEndPoint localEP) { in UdpClient() argument
122 if (localEP == null) { in UdpClient()
129 m_Family = localEP.AddressFamily; in UdpClient()
133 Client.Bind(localEP); in UdpClient()
H A DTCPListener.cs33 public TcpListener(IPEndPoint localEP) { in TcpListener() argument
34 if(Logging.On)Logging.Enter(Logging.Sockets, this, "TcpListener", localEP); in TcpListener()
35 if (localEP == null) { in TcpListener()
38 m_ServerSocketEP = localEP; in TcpListener()
H A DTCPClient.cs37 public TcpClient(IPEndPoint localEP) { in TcpClient() argument
38 if(Logging.On)Logging.Enter(Logging.Sockets, this, "TcpClient", localEP); in TcpClient()
39 if (localEP==null) { in TcpClient()
45 m_Family = localEP.AddressFamily; in TcpClient()
48 Client.Bind(localEP); in TcpClient()
H A DSocket.cs873 public void Bind(EndPoint localEP) { in Bind() argument
875 if(s_LoggingEnabled)Logging.Enter(Logging.Sockets, this, "Bind", localEP); in Bind()
883 if (localEP==null) { in Bind()
887 …og.Print("Socket#" + ValidationHelper.HashString(this) + "::Bind() localEP:" + localEP.ToString()); in Bind()
889 EndPoint endPointSnapshot = localEP; in Bind()
890 IPEndPoint ipSnapshot = localEP as IPEndPoint; in Bind()
941 internal void InternalBind(EndPoint localEP) in InternalBind() argument
943 if (s_LoggingEnabled) Logging.Enter(Logging.Sockets, this, "InternalBind", localEP); in InternalBind()
950 …("Socket#" + ValidationHelper.HashString(this) + "::InternalBind() localEP:" + localEP.ToString()); in InternalBind()
951 …GlobalLog.Assert(!(localEP is DnsEndPoint), "Calling InternalBind with a DnsEndPoint, about to get… in InternalBind()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net/
H A DHttpWebRequestTest.cs1009 string url = "http://" + localEP.ToString () + "/original/"; in ReadTimeout()
1042 string url = "http://" + localEP.ToString () + "/original/"; in AllowAutoRedirect()
1060 localEP.ToString () + "/moved/", "#A2"); in AllowAutoRedirect()
1091 string url = "http://" + localEP.ToString () + "/original/"; in PostAndRedirect_NoCL()
1108 localEP.ToString () + "/moved/", "#A2"); in PostAndRedirect_NoCL()
1122 string url = "http://" + localEP.ToString () + "/original/"; in PostAndRedirect_CL()
1139 localEP.ToString () + "/moved/", "#A2"); in PostAndRedirect_CL()
1153 string url = "http://" + localEP.ToString () + "/original/"; in PostAnd401()
1170 localEP.ToString () + "/moved/", "#A2"); in PostAnd401()
1182 string url = "http://" + localEP.ToString () + "/original/"; in InternalServerError()
[all …]
/dports/net/mDNSResponder/mDNSResponder-1310.140.1/Clients/SimpleChat.NET/
H A DSimpleChat.cs459 IPEndPoint localEP = new IPEndPoint(System.Net.IPAddress.Any, 0); in Form1_Load()
465 m_socket.Bind(localEP); in Form1_Load()
466 localEP = (IPEndPoint) m_socket.LocalEndPoint; in Form1_Load()
478 … 0, System.Environment.UserName, "_p2pchat._udp", null, null, ( ushort ) localEP.Port, null, m_eve… in Form1_Load()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.NetworkInformation/tests/FunctionalTests/
H A DConnectionsParsingTests.cs140 …lidateInfo(TcpConnectionInformation tcpConnectionInformation, IPEndPoint localEP, IPEndPoint remot… in ValidateInfo() argument
142 Assert.Equal(localEP, tcpConnectionInformation.LocalEndPoint); in ValidateInfo()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net.Sockets/
H A DTcpListener.platformnotsupported.cs44 public TcpListener (IPEndPoint localEP) in TcpListener() argument
H A DTcpClient.platformnotsupported.cs49 public TcpClient (IPEndPoint localEP) in TcpClient() argument
H A DUdpClient.platformnotsupported.cs53 public UdpClient (IPEndPoint localEP) in UdpClient() argument
H A DSocket.cs755 public void Bind (EndPoint localEP) in Bind() argument
762 if (localEP == null) in Bind()
765 var ipEndPoint = localEP as IPEndPoint; in Bind()
767 localEP = RemapIPEndPoint (ipEndPoint); in Bind()
771 Bind_internal (m_Handle, localEP.Serialize(), out error); in Bind()
778 seed_endpoint = localEP; in Bind()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/src/System/Net/
H A DFtpControlStream.cs1102 IPEndPoint localEP = (IPEndPoint)_dataSocket.LocalEndPoint; in GetPortCommandLine()
1105 return FormatAddress(localEP.Address, localEP.Port); in GetPortCommandLine()
1109 return FormatAddressV6(localEP.Address, localEP.Port); in GetPortCommandLine()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A D_FtpControlStream.cs1110 IPEndPoint localEP = (IPEndPoint) m_DataSocket.LocalEndPoint; in GetPortCommandLine()
1112 return FormatAddress(localEP.Address, localEP.Port); in GetPortCommandLine()
1114 return FormatAddressV6(localEP.Address, localEP.Port); in GetPortCommandLine()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Sockets/ref/
H A DSystem.Net.Sockets.cs260 public void Bind(System.Net.EndPoint localEP) { } in Bind() argument
531 public TcpClient(System.Net.IPEndPoint localEP) { } in TcpClient() argument
566 public TcpListener(System.Net.IPEndPoint localEP) { } in TcpListener() argument
602 public UdpClient(System.Net.IPEndPoint localEP) { } in UdpClient() argument
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/
H A DSystem.cs8247 public void Bind(System.Net.EndPoint localEP) { } in Bind() argument
8568 public TcpClient(System.Net.IPEndPoint localEP) { } in TcpClient() argument
8610 public TcpListener(System.Net.IPEndPoint localEP) { } in TcpListener() argument
8649 public UdpClient(System.Net.IPEndPoint localEP) { } in UdpClient() argument

12