Searched refs:issueCommand (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/net/smtp/
H A DSmtpClient.java55 issueCommand("QUIT\r\n", 221);
60 void issueCommand(String cmd, int expect) throws IOException { method in class:SmtpClient
71 issueCommand("rcpt to: " + s + "\r\n", 250);
73 issueCommand("rcpt to: <" + s + ">\r\n", 250);
120 issueCommand("mail from: " + s + "\r\n", 250);
122 issueCommand("mail from: <" + s + ">\r\n", 250);
129 issueCommand("helo "+InetAddress.getLocalHost().getHostName()+"\r\n", 250);
133 issueCommand("data\r\n", 354);
229 target.issueCommand(".\r\n", 250);
/openjdk7/jdk/src/share/classes/sun/net/ftp/impl/
H A DFtpClient.java521 private boolean issueCommand(String cmd) throws IOException { method in class:FtpClient
544 if (!issueCommand(cmd)) {
574 if (issueCommand("EPSV ALL")) {
686 if (!issueCommand(cmd)) {
747 if (!issueCommand(portCmd) || !issueCommand(cmd)) {
1124 issueCommand("QUIT");
1905 return issueCommand("ADAT " + s);

Completed in 172 milliseconds