diff options
Diffstat (limited to 'lib/libftp/FtpInit.c')
-rw-r--r-- | lib/libftp/FtpInit.c | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/lib/libftp/FtpInit.c b/lib/libftp/FtpInit.c deleted file mode 100644 index 4e43c8c0b39f..000000000000 --- a/lib/libftp/FtpInit.c +++ /dev/null @@ -1,41 +0,0 @@ -/* - Library for ftpd clients.(libftp) - Copyright by Oleg Orel - All rights reserved. - -This library is desined for free, non-commercial software creation. -It is changeable and can be improved. The author would greatly appreciate -any advises, new components and patches of the existing programs. -Commercial usage is also possible with participation of it's author. - - - -*/ - -#include "FtpLibrary.h" - -FTP FtpInit = { - NULL, /*sock*/ - NULL, /*data*/ - 'A', /*mode*/ - 0, /*errno*/ - 0, /*ch*/ - NULL,NULL,NULL, NULL, /*funcs*/ - 0, /*seek*/ - 0, /*flags*/ - {120,0}, /*timeout 2 min*/ - 21, /*Port*/ - "johndoe", /* Title */ - 0, /*Counter*/ -}; - -FTP *FtpCreateObject() -{ - FTP *new = (FTP *) malloc (sizeof(FTP)); - - bcopy(&FtpInit,new,sizeof(FTP)); - - return new; -} - - |