| 48 | #include <FtpServer.h> |
| 49 | |
| 50 | FtpServer::FtpServer(uint16_t _cmdPort, uint16_t _pasvPort) : ftpServer(_cmdPort), dataServer(_pasvPort) |
| 51 | { |
| 52 | cmdPort = _cmdPort; |
| 53 | pasvPort = _pasvPort; |
| 54 | |
| 55 | millisDelay = 0; |
| 56 | nbMatch = 0; |
| 57 | iCL = 0; |
| 58 | |
| 59 | iniVariables(); |
| 60 | } |
| 61 | |
| 62 | void FtpServer::end() |
| 63 | { |
nothing calls this directly
no outgoing calls
no test coverage detected