Lines Matching refs:out

51     private PrintStream out = null;
172 out.println("501 PORT not allowed after EPSV ALL.");
176 out.println("500 PORT command is disabled, please use PASV.");
188 out.println("500 '" + port_arg + "': command not understood.");
201 out.println("200 Command okay.");
205 out.println("500 '" + port_arg + "': command not understood.");
211 out.println("501 PORT not allowed after EPSV ALL");
215 out.println("500 EPRT is disabled, use PASV instead");
221 out.println("500 '" + arg + "': command not understood.");
227 out.println("500 " + arg + ": invalid address.");
232 out.println("200 Command okay.");
237 out.println("500 PASV is disabled, use PORT.");
246 out.println("500 PASV illegal over IPv6 addresses, use EPSV.");
250 out.println("227 Entering Passive Mode " + a[0] + "," + a[1] + "," + a[2] + "," + a[3] + "," +
253 out.println("425 can't build data connection: Connection refused.");
259 out.println("500 EPSV disabled, use PORT or PASV.");
263 out.println("200 EPSV ALL Command successful.");
271 out.println("229 Entering Extended Passive Mode (|||" + port + "|)");
273 out.println("500 Can't create data connection.");
283 out.println("550 File not found.");
287 out.println("150 Opening " + (binary ? "BINARY " : "ASCII ") + " data connection for file " + arg +
304 out.println("226 Transfer complete.");
318 out.println("500 Can't create file " + arg);
322 out.println("150 Opening " + (binary ? "BINARY " : "ASCII ") + " data connection for file " + arg);
334 out.println("226 Transfer complete.");
348 out.println("550 File not found.");
352 out.println("150 Opening ASCII data connection for file list");
363 out.println("226 Transfer complete.");
391 out = new PrintStream(cmd.getOutputStream(), true, "ISO8859_1");
424 System.out.println("parse: cmd = " + s + " arg = " +cmd.toString());
434 out.println("530 Not logged in.");
444 out = new PrintStream(cmd.getOutputStream(), true, "ISO8859_1");
445 out.println("220 Java FTP test server (j2se 6.0) ready.");
446 out.flush();
460 System.out.println("line: " + str);
465 out.println("500 '" + str +"': command not understood.");
468 out.println("221 Goodbye.");
475 out.println("331 User name okay, need password.");
478 out.println("230 User logged in, proceed.");
481 out.println("331 User name okay, need password.");
487 out.println("503 Login with USER first.");
492 out.println("332 Need account for login.");
497 out.println("230 User " + username + " logged in.");
500 out.println("530 Login incorrect.");
507 out.println("250 CWD command successful.");
509 out.println("550 " + path + ": no such file or directory.");
516 out.println("250 CWD command successful.");
518 out.println("550 invalid path.");
524 out.println("257 \"" + s + "\" is current directory");
529 out.println("200 NOOP command successful.");
557 out.println("215 UNIX Type: L8 Version: Java 6.0");
564 out.println("500 'TYPE " + arg + "' command not understood.");
567 out.println("200 Type set to " + buf.toString() + ".");
593 out.println("250 file " + arg + " deleted.");
596 out.println("550 " + arg + ": no such file or directory.");
602 out.println("503 Bad sequence of commands.");
607 out.println("350 File or directory exists, ready for destination name.");
609 out.println("550 " + renameFrom + ": no such file or directory");
617 out.println("503 Bad sequence of commands.");
621 out.println("250 Rename successful");
623 out.println("550 Rename ");
633 out.println("350 Restarting at " + restart + ". Send STORE or RETRIEVE to initiate transfer");
635 out.println("501 Syntax error in command of arguments.");
639 out.println("211-Features:");
640 out.println(" REST STREAM");
641 out.println(" PBSZ");
642 out.println(" AUTH TLS");
643 out.println(" PROT P");
644 out.println(" CCC");
645 out.println("211 End");
649 out.println("234 TLS Authentication OK.");
650 out.flush();
660 out.println("550 Unable to create secure channel.");
665 out = new PrintStream(cmd.getOutputStream(), true, "ISO8859_1");
667 System.out.println("Secure socket created!");
671 out.println("501 Unknown or unsupported AUTH type");
674 out.println("200 Command OK.");
683 out.println("200 Command OK.");
690 out.println("200 Command OK.");
693 out.println("537 Requested PROT level not supported by security mechanism.");
697 out.println("200 Command OK.");
711 out.close();