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

  /external/curl/docs/cmdline-opts/
disable-eprt.d 1 Long: disable-eprt
2 Help: Inhibit using EPRT or LPRT
5 Tell curl to disable the use of the EPRT and LPRT commands when doing active
6 FTP transfers. Curl will normally always first attempt to use EPRT, then LPRT
7 before using PORT, but with this option, it will use PORT right away. EPRT and
12 --eprt can be used to explicitly enable EPRT again and --no-eprt is an alias
13 for --disable-eprt.
15 If the server is accessed using IPv6, this option will have no effect as EPRT
    [all...]
ftp-port.d 6 See-also: ftp-pasv disable-eprt
26 use of PORT with --ftp-pasv. Disable the attempt to use the EPRT command
27 instead of PORT by using --disable-eprt. EPRT is really PORT++.
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
EprtCommandHandlerTest.java 41 final Command COMMAND = new Command(CommandNames.EPRT, PARAMETERS_IPV4);
58 final Command COMMAND = new Command(CommandNames.EPRT, PARAMETERS_IPV6);
75 testHandleCommand_InvalidParameters(commandHandler, CommandNames.EPRT, PARAMETERS_INSUFFICIENT);
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
EprtCommandHandlerTest.groovy 42 assertSessionReply(ReplyCodes.EPRT_OK, 'eprt')
49 assertSessionReply(ReplyCodes.EPRT_OK, 'eprt')
56 assertSessionReply(ReplyCodes.EPRT_OK, 'eprt')
93 return new Command(CommandNames.EPRT, PARAMETERS_IPV4)
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/command/
CommandNames.java 33 public static final String EPRT = "EPRT";
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/
StubFtpServer.java 109 setCommandHandler(CommandNames.EPRT, new EprtCommandHandler());
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
FakeFtpServer.java 181 setCommandHandler(CommandNames.EPRT, new EprtCommandHandler());
  /external/curl/lib/
ftp.c 972 EPRT,
997 static const char mode[][5] = { "EPRT", "PORT" };
    [all...]

Completed in 1246 milliseconds