Home
last modified time | relevance | path

Searched refs:ipAddress (Results 1 – 25 of 26) sorted by relevance

12

/external/nist-sip/java/gov/nist/javax/sip/stack/
DMessageProcessor.java78 private InetAddress ipAddress; field in MessageProcessor
113 protected MessageProcessor( InetAddress ipAddress, int port, String transport, in MessageProcessor() argument
116 this.initialize(ipAddress, port, transactionStack); in MessageProcessor()
127 public final void initialize( InetAddress ipAddress, int port, in initialize() argument
131 this.savedIpAddress = ipAddress.getHostAddress(); in initialize()
132 this.ipAddress = ipAddress; in initialize()
135 this.sentByHostPort.setHost(new Host(ipAddress.getHostAddress())); in initialize()
220 return this.ipAddress; in getIpAddress()
225 protected void setIpAddress(InetAddress ipAddress) { in setIpAddress() argument
226 this.sentByHostPort.setHost( new Host(ipAddress.getHostAddress())); in setIpAddress()
[all …]
DUDPMessageProcessor.java97 protected UDPMessageProcessor(InetAddress ipAddress, in UDPMessageProcessor() argument
99 super(ipAddress, port, "udp",sipStack); in UDPMessageProcessor()
108 ipAddress); in UDPMessageProcessor()
120 if ( ipAddress.getHostAddress().equals(IN_ADDR_ANY) || in UDPMessageProcessor()
121 ipAddress.getHostAddress().equals(IN6_ADDR_ANY)){ in UDPMessageProcessor()
DUDPMessageChannel.java144 String ipAddress; field in UDPMessageChannel.PingBackTimerTask
147 public PingBackTimerTask(String ipAddress, int port) { in PingBackTimerTask() argument
148 this.ipAddress = ipAddress; in PingBackTimerTask()
150 pingBackRecord.put(ipAddress + ":" + port, this); in PingBackTimerTask()
154 pingBackRecord.remove(ipAddress + ":" + port); in run()
158 return (ipAddress + ":" + port).hashCode(); in hashCode()
DTCPMessageProcessor.java78 protected TCPMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { in TCPMessageProcessor() argument
79 super(ipAddress, port, "tcp",sipStack); in TCPMessageProcessor()
DTLSMessageProcessor.java88 protected TLSMessageProcessor(InetAddress ipAddress, SIPTransactionStack sipStack, int port) { in TLSMessageProcessor() argument
89 super(ipAddress, port, "tls",sipStack); in TLSMessageProcessor()
DServerLog.java161 public void setStackIpAddress(String ipAddress) { in setStackIpAddress() argument
162 this.stackIpAddress = ipAddress; in setStackIpAddress()
DSIPTransactionStack.java1937 protected MessageProcessor createMessageProcessor(InetAddress ipAddress, int port, in createMessageProcessor() argument
1940 UDPMessageProcessor udpMessageProcessor = new UDPMessageProcessor(ipAddress, this, in createMessageProcessor()
1946 TCPMessageProcessor tcpMessageProcessor = new TCPMessageProcessor(ipAddress, this, in createMessageProcessor()
1952 TLSMessageProcessor tlsMessageProcessor = new TLSMessageProcessor(ipAddress, this, in createMessageProcessor()
1964 mp.initialize( ipAddress, port, this ); in createMessageProcessor()
/external/nanohttpd/core/src/test/java/fi/iki/elonen/
DHttpSessionHeadersTest.java25 for(String ipAddress : ipAddresses) { in testHeadersRemoteIp()
26 InetAddress inetAddress = InetAddress.getByName(ipAddress); in testHeadersRemoteIp()
28 assertEquals(ipAddress, session.getHeaders().get("remote-addr")); in testHeadersRemoteIp()
29 assertEquals(ipAddress, session.getHeaders().get("http-client-ip")); in testHeadersRemoteIp()
/external/chromium_org/net/android/java/src/org/chromium/net/
DAndroidNetworkLibrary.java178 String ipAddress = address.getHostAddress(); in getNetworkList() local
179 if (address instanceof Inet6Address && ipAddress.contains("%")) { in getNetworkList()
180 ipAddress = ipAddress.substring(0, ipAddress.lastIndexOf("%")); in getNetworkList()
182 addressString.append(ipAddress); in getNetworkList()
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/source/
Dvie_autotest_network.cc271 char ipAddress[64]; in ViENetworkAPITest() local
272 memset(ipAddress, 0, 64); in ViENetworkAPITest()
274 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest()
279 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest()
293 tbChannel.videoChannel, ipAddress, rtpPort, rtcpPort, in ViENetworkAPITest()
307 tbChannel.videoChannel, ipAddress, rtpPort, rtcpPort, in ViENetworkAPITest()
316 EXPECT_EQ(0, ViE.network->GetLocalIP(ipAddress, false)); in ViENetworkAPITest()
324 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest()
330 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest()
334 tbChannel.videoChannel, rtpPort, rtcpPort, ipAddress)); in ViENetworkAPITest()
Dvie_autotest_record.cc74 const char* ipAddress = "127.0.0.1"; in VideoEngineSampleRecordCode() local
163 voice_channel_transport->SetSendDestination(ipAddress, audio_tx_port); in VideoEngineSampleRecordCode()
365 error = video_channel_transport->SetSendDestination(ipAddress, rtpPort); in VideoEngineSampleRecordCode()
Dvie_autotest_loopback.cc585 const char* ipAddress = "127.0.0.1"; in VideoEngineSampleCode() local
597 error = video_channel_transport->SetSendDestination(ipAddress, rtpPort); in VideoEngineSampleCode()
/external/nist-sip/java/gov/nist/javax/sip/
DListeningPointImpl.java227 String ipAddress = this.getIPAddress(); in createContactHeader() local
230 sipURI.setHost(ipAddress); in createContactHeader()
246 public void sendHeartbeat(String ipAddress, int port) throws IOException { in sendHeartbeat() argument
249 targetHostPort.setHost(new Host( ipAddress)); in sendHeartbeat()
DListeningPointExt.java29 public void sendHeartbeat(String ipAddress, int port) throws IOException ; in sendHeartbeat() argument
DDialogFilter.java305 String ipAddress = contactUri.getHost(); in processRequest() local
319 if (ipAddress != null in processRequest()
320 … && (!ipAddress.equals(listeningPoint.getIPAddress()) || contactPort != listeningPoint in processRequest()
/external/tcpdump/
DsctpHeader.h114 u_int32_t ipAddress; member
120 u_int8_t ipAddress[16]; member
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DOkHostnameVerifier.java83 private boolean verifyIpAddress(String ipAddress, X509Certificate certificate) { in verifyIpAddress() argument
85 if (ipAddress.equalsIgnoreCase(altName)) { in verifyIpAddress()
/external/chromium_org/third_party/webrtc/video_engine/test/libvietest/include/
Dtb_video_channel.h35 const char* ipAddress = "127.0.0.1");
/external/nist-sip/java/javax/sip/
DSipStack.java14 ListeningPoint createListeningPoint(String ipAddress, int port, in createListeningPoint() argument
/external/chromium_org/third_party/webrtc/test/channel_transport/
Dudp_transport_impl.cc2124 char ipAddress[kIpAddressVersion6Length]; in IncomingRTPFunction() local
2138 if (IPAddressCached(*fromSocket, ipAddress, ipAddressLength, portNr) < in IncomingRTPFunction()
2150 ipAddress[kIpAddressVersion6Length - 1] = 0; in IncomingRTPFunction()
2151 strncpy(_fromIP, ipAddress, kIpAddressVersion6Length - 1); in IncomingRTPFunction()
2177 "Incoming RTP packet from ip:%s port:%d", ipAddress, portNr); in IncomingRTPFunction()
2179 ipAddress, portNr); in IncomingRTPFunction()
2187 char ipAddress[kIpAddressVersion6Length]; in IncomingRTCPFunction() local
2200 if (IPAddress(*fromSocket, ipAddress, ipAddressLength, portNr) < 0) in IncomingRTCPFunction()
2210 ipAddress[kIpAddressVersion6Length - 1] = 0; in IncomingRTCPFunction()
2211 strncpy(_fromIP, ipAddress, kIpAddressVersion6Length - 1); in IncomingRTCPFunction()
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DDebugEventSocketProxy.cs97 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake()
98 serverSocket = new TcpListener(ipAddress, port); in Handshake()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DDebugEventSocketProxy.cs104 System.Net.IPAddress ipAddress = hostInfo.AddressList[0]; in Handshake()
105 serverSocket = new TcpListener( ipAddress, port ); in Handshake()
/external/chromium_org/chrome/common/extensions/api/
Dmdns.idl20 DOMString ipAddress;
Dgcd_private.idl133 static void establishSession(DOMString ipAddress,
/external/chromium_org/extensions/common/api/
Dcast_channel.idl64 DOMString ipAddress;

12