| 955 | } |
| 956 | |
| 957 | bool FtpServer::dataConnected() |
| 958 | { |
| 959 | if(data.connected()) return true; |
| 960 | data.stop(); |
| 961 | client.println(F("426 Data connection closed. Transfer aborted")); |
| 962 | transferStage = FTP_Close; |
| 963 | return false; |
| 964 | } |
| 965 | |
| 966 | bool FtpServer::openDir(FTP_DIR* pdir) |
| 967 | { |
nothing calls this directly
no outgoing calls
no test coverage detected