HomeSort by relevance Sort by last modified time
    Searched refs:myAddress (Results 1 - 6 of 6) sorted by null

  /external/nist-sip/java/gov/nist/core/net/
DefaultNetworkLayer.java 112 InetAddress myAddress) throws IOException {
114 myAddress, 0);
118 InetAddress myAddress) throws IOException {
119 if (myAddress != null)
120 return new Socket(address, port, myAddress, 0);
126 * Creates a new Socket, binds it to myAddress:myPort and connects it to
131 * @param myAddress the address that we are supposed to bind on or null
136 * @return a new Socket, bound on myAddress:myPort and connected to
142 InetAddress myAddress, int myPort)
145 if (myAddress != null
    [all...]
SslNetworkLayer.java 122 InetAddress myAddress) throws IOException {
124 myAddress, 0);
128 InetAddress myAddress) throws IOException {
129 if (myAddress != null)
130 return new Socket(address, port, myAddress, 0);
136 * Creates a new Socket, binds it to myAddress:myPort and connects it to
141 * @param myAddress the address that we are supposed to bind on or null
146 * @return a new Socket, bound on myAddress:myPort and connected to
152 InetAddress myAddress, int myPort)
155 if (myAddress != null)
    [all...]
NetworkLayer.java 94 * Creates a new Socket, binds it to myAddress:myPort and connects it to
99 * @param myAddress the address that we are supposed to bind on or null
104 * @return a new Socket, bound on myAddress:myPort and connected to
110 InetAddress myAddress, int myPort)
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java 85 protected String myAddress;
128 myAddress = msgProcessor.getIpAddress().getHostAddress();
166 this.myAddress = messageProcessor.getIpAddress().getHostAddress();
712 return myAddress;
TLSMessageChannel.java 89 private String myAddress;
143 myAddress = msgProcessor.getIpAddress().getHostAddress();
181 this.myAddress = messageProcessor.getIpAddress().getHostAddress();
691 return myAddress;
UDPMessageChannel.java 114 private String myAddress;
179 this.myAddress = messageProcessor.getIpAddress().getHostAddress();
206 this.myAddress = messageProcessor.getIpAddress().getHostAddress();
232 this.myAddress = messageProcessor.getIpAddress().getHostAddress();
    [all...]

Completed in 87 milliseconds