FTPClient

Fork of FTPClient by Ricky Kwon

Revision:
4:8ecc32e7c69b
Parent:
3:4fd8e5cd6307
--- a/FTPClient.h	Wed Jul 29 00:03:21 2015 +0000
+++ b/FTPClient.h	Thu Dec 14 04:49:35 2017 +0000
@@ -13,6 +13,8 @@
     FTPClient(PinName mosi, PinName miso, PinName sclk, PinName ssel, const char* root);
     ~FTPClient() {};
     
+    //bool open(char []); //new open command to check
+    
     /** Connect to FTPServer
      *
      * @param FTPServer IP, FTPServer PORT, FTPServer login ID, FTPServer login PASS
@@ -20,7 +22,8 @@
      *   1 on success,
      *   0 on open error
      */
-    bool open(char* ip, int port, char* id, char* pass);
+     bool open(char [], int, char [], char []);
+    //bool open(char* ip, int port, char* id, char* pass);
     
     /** Get file from FTPServer
      *