minix/lib/libfetch/ftperr.h
2010-06-30 23:55:55 +00:00

46 lines
2.4 KiB
C

static struct fetcherr ftp_errlist[] = {
{ 110, FETCH_OK, "Restart marker reply" },
{ 120, FETCH_TEMP, "Service ready in a few minutes" },
{ 125, FETCH_OK, "Data connection already open; transfer starting" },
{ 150, FETCH_OK, "File status okay; about to open data connection" },
{ 200, FETCH_OK, "Command okay" },
{ 202, FETCH_PROTO, "Command not implemented, superfluous at this site" },
{ 211, FETCH_INFO, "System status, or system help reply" },
{ 212, FETCH_INFO, "Directory status" },
{ 213, FETCH_INFO, "File status" },
{ 214, FETCH_INFO, "Help message" },
{ 215, FETCH_INFO, "Set system type" },
{ 220, FETCH_OK, "Service ready for new user" },
{ 221, FETCH_OK, "Service closing control connection" },
{ 225, FETCH_OK, "Data connection open; no transfer in progress" },
{ 226, FETCH_OK, "Requested file action successful" },
{ 227, FETCH_OK, "Entering Passive Mode" },
{ 229, FETCH_OK, "Entering Extended Passive Mode" },
{ 230, FETCH_OK, "User logged in, proceed" },
{ 250, FETCH_OK, "Requested file action okay, completed" },
{ 257, FETCH_OK, "File/directory created" },
{ 331, FETCH_AUTH, "User name okay, need password" },
{ 332, FETCH_AUTH, "Need account for login" },
{ 350, FETCH_OK, "Requested file action pending further information" },
{ 421, FETCH_DOWN, "Service not available, closing control connection" },
{ 425, FETCH_NETWORK, "Can't open data connection" },
{ 426, FETCH_ABORT, "Connection closed; transfer aborted" },
{ 450, FETCH_UNAVAIL, "File unavailable (e.g., file busy)" },
{ 451, FETCH_SERVER, "Requested action aborted: local error in processing" },
{ 452, FETCH_FULL, "Insufficient storage space in system" },
{ 500, FETCH_PROTO, "Syntax error, command unrecognized" },
{ 501, FETCH_PROTO, "Syntax error in parameters or arguments" },
{ 502, FETCH_PROTO, "Command not implemented" },
{ 503, FETCH_PROTO, "Bad sequence of commands" },
{ 504, FETCH_PROTO, "Command not implemented for that parameter" },
{ 530, FETCH_AUTH, "Not logged in" },
{ 532, FETCH_AUTH, "Need account for storing files" },
{ 535, FETCH_PROTO, "Bug in MediaHawk Video Kernel FTP server" },
{ 550, FETCH_UNAVAIL, "File unavailable (e.g., file not found, no access)" },
{ 551, FETCH_PROTO, "Requested action aborted. Page type unknown" },
{ 552, FETCH_FULL, "Exceeded storage allocation" },
{ 553, FETCH_EXISTS, "File name not allowed" },
{ 999, FETCH_PROTO, "Protocol error" },
{ -1, FETCH_UNKNOWN, "Unknown FTP error" }
};