HomeSort by relevance Sort by last modified time
    Searched defs:mySock (Results 1 - 2 of 2) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageChannel.java 67 private Socket mySock;
126 mySock = sock;
127 peerAddress = mySock.getInetAddress();
129 myClientInputStream = mySock.getInputStream();
130 myClientOutputStream = mySock.getOutputStream();
136 this.peerPort = mySock.getPort();
185 if (mySock != null) {
186 mySock.close();
187 mySock = null;
258 // if (mySock == null && s != null)
    [all...]
TLSMessageChannel.java 75 private Socket mySock;
131 mySock = (SSLSocket) sock;
142 peerAddress = mySock.getInetAddress();
144 myClientInputStream = mySock.getInputStream();
154 this.peerPort = mySock.getPort();
199 if (mySock != null)
200 mySock.close();
261 if (sock != mySock && sock != null) {
263 if (mySock != null)
264 mySock.close()
    [all...]

Completed in 670 milliseconds