(self, arg)
| 170 | self.dtp = self.dtp_handler(conn, baseclass=self) |
| 171 | |
| 172 | def cmd_eprt(self, arg): |
| 173 | af, ip, port = arg.split(arg[0])[1:-1] |
| 174 | port = int(port) |
| 175 | s = socket.create_connection((ip, port), timeout=TIMEOUT) |
| 176 | self.dtp = self.dtp_handler(s, baseclass=self) |
| 177 | self.push('200 active data connection established') |
| 178 | |
| 179 | def cmd_epsv(self, arg): |
| 180 | with socket.create_server((self.socket.getsockname()[0], 0), |
nothing calls this directly
no test coverage detected