| 132 | } |
| 133 | |
| 134 | void FtpServer::iniVariables() |
| 135 | { |
| 136 | // Default for data port |
| 137 | dataPort = FTP_DATA_PORT_DFLT; |
| 138 | |
| 139 | // Default Data connection is Active |
| 140 | dataConn = FTP_NoConn; |
| 141 | |
| 142 | // Set the root directory |
| 143 | strcpy(cwdName, "/"); |
| 144 | |
| 145 | rnfrCmd = false; |
| 146 | transferStage = FTP_Close; |
| 147 | } |
| 148 | |
| 149 | uint8_t FtpServer::handleFTP() |
| 150 | { |
nothing calls this directly
no outgoing calls
no test coverage detected