/external/vogar/src/vogar/ |
D | SshTarget.java | 41 public SshTarget(Log log, String hostAndPort) { in SshTarget() argument 43 int colon = hostAndPort.indexOf(":"); in SshTarget() 45 host = hostAndPort.substring(0, colon); in SshTarget() 46 port = Integer.parseInt(hostAndPort.substring(colon + 1)); in SshTarget() 48 host = hostAndPort; in SshTarget()
|
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/command/ |
D | PasvCommandHandler.java | 47 String hostAndPort = PortParser.convertHostAndPortToCommaDelimitedBytes(server, port); in handle() local 49 sendReply(session, ReplyCodes.PASV_OK, "pasv", list(hostAndPort)); in handle()
|
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 63 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 65 sendReply(session, hostAndPort); in handleCommand()
|
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/stub/command/ |
D | PasvCommandHandler.java | 66 … String hostAndPort = "(" + PortParser.convertHostAndPortToCommaDelimitedBytes(server, port) + ")"; in handleCommand() local 68 sendReply(session, hostAndPort); in handleCommand()
|