|
ReactOS 0.4.16-dev-1946-g52006dd
|
#include "wincfg.h"#include <winsock2.h>#include <errno.h>#include <stdio.h>#include <string.h>#include <stddef.h>#include <stdlib.h>#include <ctype.h>#include <stdarg.h>#include <time.h>#include <io.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include "sio/sio.h"#include "Strn/Strn.h"#include "ncftp.h"#include "util.h"#include "ftp.h"

Go to the source code of this file.
Classes | |
| struct | utimbuf |
Macros | |
| #define | strcasecmp stricmp |
| #define | strncasecmp strnicmp |
| #define | sleep WinSleep |
| #define | S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG) |
| #define | S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR) |
| #define | open _open |
| #define | write _write |
| #define | read _read |
| #define | close _close |
| #define | lseek _lseek |
| #define | stat _stat |
| #define | lstat _stat |
| #define | fstat _fstat |
| #define | dup _dup |
| #define | unlink remove |
| #define | NO_SIGNALS 1 |
| #define | USE_SIO 1 |
| #define | Open open |
| #define | Stat stat |
| #define | Fstat fstat |
| #define | Lstat lstat |
| #define | Lseek(a, b, c) lseek(a, (off_t) b, c) |
| #define | IAC 255 /* interpret as command: */ |
| #define | DONT 254 /* you are not to use option */ |
| #define | DO 253 /* please, you use option */ |
| #define | WONT 252 /* I won't use option */ |
| #define | WILL 251 /* I will use option */ |
| #define | SB 250 /* interpret as subnegotiation */ |
| #define | GA 249 /* you may reverse the line */ |
| #define | EL 248 /* erase the current line */ |
| #define | EC 247 /* erase the current character */ |
| #define | AYT 246 /* are you there */ |
| #define | AO 245 /* abort output--but let prog finish */ |
| #define | IP 244 /* interrupt process--permanently */ |
| #define | BREAK 243 /* break */ |
| #define | DM 242 /* data mark--for connect. cleaning */ |
| #define | NOP 241 /* nop */ |
| #define | SE 240 /* end sub negotiation */ |
| #define | EOR 239 /* end of record (transparent mode) */ |
| #define | ABORT 238 /* Abort process */ |
| #define | SUSP 237 /* Suspend process */ |
| #define | xEOF 236 /* End of file: EOF is already used... */ |
| #define | SYNCH 242 /* for telfunc calls */ |