Send a command and expect a response beginning with '2'.
(self, cmd)
| 281 | return self.getresp() |
| 282 | |
| 283 | def voidcmd(self, cmd): |
| 284 | """Send a command and expect a response beginning with '2'.""" |
| 285 | self.putcmd(cmd) |
| 286 | return self.voidresp() |
| 287 | |
| 288 | def sendport(self, host, port): |
| 289 | '''Send a PORT command with the current host and the given |