Close down the connection, sending the QUIT command.
()
| 794 | * Close down the connection, sending the QUIT command. |
| 795 | */ |
| 796 | synchronized boolean quit() throws IOException { |
| 797 | boolean ok = false; |
| 798 | try { |
| 799 | Response r = simpleCommand("QUIT"); |
| 800 | ok = r.ok; |
| 801 | } finally { |
| 802 | close(); |
| 803 | } |
| 804 | return ok; |
| 805 | } |
| 806 | |
| 807 | /** |
| 808 | * Close the connection without sending any commands. |
no test coverage detected