Home
last modified time | relevance | path

Searched refs:myAddress (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/ftp/impl/
DFtpClient.java721 InetAddress myAddress; in openDataConnection() local
734 myAddress = portSocket.getInetAddress(); in openDataConnection()
735 if (myAddress.isAnyLocalAddress()) { in openDataConnection()
736 myAddress = server.getLocalAddress(); in openDataConnection()
745 portCmd = "EPRT |" + ((myAddress instanceof Inet6Address) ? "2" : "1") + "|" + in openDataConnection()
746 myAddress.getHostAddress() + "|" + portSocket.getLocalPort() + "|"; in openDataConnection()
750 byte[] addr = myAddress.getAddress(); in openDataConnection()