kernel: scheduling fix for ARM
[minix.git] / lib / libfetch / ftperr.h
blob272add64c4f485c935d99e45da3eec3d307d9bf4
1 static struct fetcherr ftp_errlist[] = {
2 { 110, FETCH_OK, "Restart marker reply" },
3 { 120, FETCH_TEMP, "Service ready in a few minutes" },
4 { 125, FETCH_OK, "Data connection already open; transfer starting" },
5 { 150, FETCH_OK, "File status okay; about to open data connection" },
6 { 200, FETCH_OK, "Command okay" },
7 { 202, FETCH_PROTO, "Command not implemented, superfluous at this site" },
8 { 211, FETCH_INFO, "System status, or system help reply" },
9 { 212, FETCH_INFO, "Directory status" },
10 { 213, FETCH_INFO, "File status" },
11 { 214, FETCH_INFO, "Help message" },
12 { 215, FETCH_INFO, "Set system type" },
13 { 220, FETCH_OK, "Service ready for new user" },
14 { 221, FETCH_OK, "Service closing control connection" },
15 { 225, FETCH_OK, "Data connection open; no transfer in progress" },
16 { 226, FETCH_OK, "Requested file action successful" },
17 { 227, FETCH_OK, "Entering Passive Mode" },
18 { 229, FETCH_OK, "Entering Extended Passive Mode" },
19 { 230, FETCH_OK, "User logged in, proceed" },
20 { 250, FETCH_OK, "Requested file action okay, completed" },
21 { 257, FETCH_OK, "File/directory created" },
22 { 331, FETCH_AUTH, "User name okay, need password" },
23 { 332, FETCH_AUTH, "Need account for login" },
24 { 350, FETCH_OK, "Requested file action pending further information" },
25 { 421, FETCH_DOWN, "Service not available, closing control connection" },
26 { 425, FETCH_NETWORK, "Can't open data connection" },
27 { 426, FETCH_ABORT, "Connection closed; transfer aborted" },
28 { 450, FETCH_UNAVAIL, "File unavailable (e.g., file busy)" },
29 { 451, FETCH_SERVER, "Requested action aborted: local error in processing" },
30 { 452, FETCH_FULL, "Insufficient storage space in system" },
31 { 500, FETCH_PROTO, "Syntax error, command unrecognized" },
32 { 501, FETCH_PROTO, "Syntax error in parameters or arguments" },
33 { 502, FETCH_PROTO, "Command not implemented" },
34 { 503, FETCH_PROTO, "Bad sequence of commands" },
35 { 504, FETCH_PROTO, "Command not implemented for that parameter" },
36 { 530, FETCH_AUTH, "Not logged in" },
37 { 532, FETCH_AUTH, "Need account for storing files" },
38 { 535, FETCH_PROTO, "Bug in MediaHawk Video Kernel FTP server" },
39 { 550, FETCH_UNAVAIL, "File unavailable (e.g., file not found, no access)" },
40 { 551, FETCH_PROTO, "Requested action aborted. Page type unknown" },
41 { 552, FETCH_FULL, "Exceeded storage allocation" },
42 { 553, FETCH_EXISTS, "File name not allowed" },
43 { 999, FETCH_PROTO, "Protocol error" },
44 { -1, FETCH_UNKNOWN, "Unknown FTP error" }