fix what i broke
[unix-history] / usr / src / usr.bin / ftp / cmdtab.c
CommitLineData
edf71f48 1/*
63c685da 2 * Copyright (c) 1985, 1989 Regents of the University of California.
11c5f0a3
KB
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms are permitted
b36fc510
KB
6 * provided that the above copyright notice and this paragraph are
7 * duplicated in all such forms and that any documentation,
8 * advertising materials, and other materials related to such
9 * distribution and use acknowledge that the software was developed
10 * by the University of California, Berkeley. The name of the
11 * University may not be used to endorse or promote products derived
12 * from this software without specific prior written permission.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
14 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
ff00793c 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
edf71f48
DF
16 */
17
53f01c40 18#ifndef lint
dce1f2a3 19static char sccsid[] = "@(#)cmdtab.c 5.8.1.2 (Berkeley) %G%";
11c5f0a3 20#endif /* not lint */
5ac6fc46 21
53f01c40
SL
22#include "ftp_var.h"
23
24/*
25 * User FTP -- Command Tables.
26 */
27int setascii(), setbell(), setbinary(), setdebug(), setform();
7136ef0a 28int setglob(), sethash(), setmode(), setpeer(), setport();
5ac6fc46 29int setprompt(), setstruct();
9248b609 30int settenex(), settrace(), settype(), setverbose();
63c685da 31int disconnect(), syst();
5ac6fc46 32int cd(), lcd(), delete(), mdelete(), user();
9072bd8a 33int ls(), mls(), get(), mget(), help(), append(), put(), mput();
53f01c40
SL
34int quit(), renamefile(), status();
35int quote(), rmthelp(), shell();
9069f68e
GM
36int pwd(), makedir(), removedir(), setcr();
37int account(), doproxy(), reset(), setcase(), setntrans(), setnmap();
38int setsunique(), setrunique(), cdup(), macdef(), domacro();
63c685da 39int sizecmd(), modtime(), rmtstatus();
53f01c40 40
9069f68e 41char accounthelp[] = "send account command to remote server";
5ac6fc46 42char appendhelp[] = "append to a file";
53f01c40
SL
43char asciihelp[] = "set ascii transfer type";
44char beephelp[] = "beep when command completed";
45char binaryhelp[] = "set binary transfer type";
9069f68e 46char casehelp[] = "toggle mget upper/lower case id mapping";
53f01c40 47char cdhelp[] = "change remote working directory";
9069f68e 48char cduphelp[] = "change remote working directory to parent directory";
53f01c40 49char connecthelp[] = "connect to remote tftp";
9069f68e 50char crhelp[] = "toggle carriage return stripping on ascii gets";
53f01c40
SL
51char deletehelp[] = "delete remote file";
52char debughelp[] = "toggle/set debugging mode";
53char dirhelp[] = "list contents of remote directory";
54char disconhelp[] = "terminate ftp session";
9069f68e 55char domachelp[] = "execute macro";
53f01c40 56char formhelp[] = "set file transfer format";
9248b609 57char globhelp[] = "toggle metacharacter expansion of local file names";
5ac6fc46 58char hashhelp[] = "toggle printing `#' for each buffer transferred";
53f01c40
SL
59char helphelp[] = "print local help information";
60char lcdhelp[] = "change local working directory";
ff00793c 61char lshelp[] = "list contents of remote directory";
9069f68e 62char macdefhelp[] = "define a macro";
5ac6fc46 63char mdeletehelp[] = "delete multiple files";
9072bd8a 64char mdirhelp[] = "list contents of multiple remote directories";
9248b609 65char mgethelp[] = "get multiple files";
53f01c40 66char mkdirhelp[] = "make directory on the remote machine";
63c685da 67char mlshelp[] = "nlist contents of multiple remote directories";
ff00793c 68char modtimehelp[] = "show last modification time of remote file";
53f01c40 69char modehelp[] = "set file transfer mode";
9248b609 70char mputhelp[] = "send multiple files";
ff00793c 71char nlisthelp[] = "nlist contents of remote directory";
9069f68e
GM
72char nmaphelp[] = "set templates for default file name mapping";
73char ntranshelp[] = "set translation table for default file name mapping";
5ac6fc46 74char porthelp[] = "toggle use of PORT cmd for each data connection";
53f01c40 75char prompthelp[] = "force interactive prompting on multiple commands";
9069f68e 76char proxyhelp[] = "issue command on alternate connection";
53f01c40
SL
77char pwdhelp[] = "print working directory on remote machine";
78char quithelp[] = "terminate ftp session and exit";
79char quotehelp[] = "send arbitrary ftp command";
80char receivehelp[] = "receive file";
81char remotehelp[] = "get help from remote server";
82char renamehelp[] = "rename file";
83char rmdirhelp[] = "remove directory on the remote machine";
ff00793c 84char rmtstatushelp[]="show status of remote machine";
9069f68e
GM
85char runiquehelp[] = "toggle store unique for local files";
86char resethelp[] = "clear queued command replies";
9248b609 87char sendhelp[] = "send one file";
53f01c40 88char shellhelp[] = "escape to the shell";
ff00793c 89char sizecmdhelp[] = "show size of remote file";
53f01c40
SL
90char statushelp[] = "show current status";
91char structhelp[] = "set file transfer structure";
9069f68e 92char suniquehelp[] = "toggle store unique on remote machine";
ff00793c 93char systemhelp[] = "show remote system type";
53f01c40
SL
94char tenexhelp[] = "set tenex file transfer type";
95char tracehelp[] = "toggle packet tracing";
96char typehelp[] = "set file transfer type";
97char userhelp[] = "send new user information";
98char verbosehelp[] = "toggle verbose mode";
99
100struct cmd cmdtab[] = {
9069f68e
GM
101 { "!", shellhelp, 0, 0, 0, shell },
102 { "$", domachelp, 1, 0, 0, domacro },
103 { "account", accounthelp, 0, 1, 1, account},
104 { "append", appendhelp, 1, 1, 1, put },
105 { "ascii", asciihelp, 0, 1, 1, setascii },
106 { "bell", beephelp, 0, 0, 0, setbell },
107 { "binary", binaryhelp, 0, 1, 1, setbinary },
108 { "bye", quithelp, 0, 0, 0, quit },
109 { "case", casehelp, 0, 0, 1, setcase },
110 { "cd", cdhelp, 0, 1, 1, cd },
111 { "cdup", cduphelp, 0, 1, 1, cdup },
112 { "close", disconhelp, 0, 1, 1, disconnect },
113 { "cr", crhelp, 0, 0, 0, setcr },
114 { "delete", deletehelp, 0, 1, 1, delete },
115 { "debug", debughelp, 0, 0, 0, setdebug },
116 { "dir", dirhelp, 1, 1, 1, ls },
117 { "disconnect", disconhelp, 0, 1, 1, disconnect },
118 { "form", formhelp, 0, 1, 1, setform },
119 { "get", receivehelp, 1, 1, 1, get },
120 { "glob", globhelp, 0, 0, 0, setglob },
121 { "hash", hashhelp, 0, 0, 0, sethash },
122 { "help", helphelp, 0, 0, 1, help },
a2d52b81 123 { "image", binaryhelp, 0, 1, 1, setbinary },
9069f68e
GM
124 { "lcd", lcdhelp, 0, 0, 0, lcd },
125 { "ls", lshelp, 1, 1, 1, ls },
126 { "macdef", macdefhelp, 0, 0, 0, macdef },
127 { "mdelete", mdeletehelp, 1, 1, 1, mdelete },
128 { "mdir", mdirhelp, 1, 1, 1, mls },
129 { "mget", mgethelp, 1, 1, 1, mget },
130 { "mkdir", mkdirhelp, 0, 1, 1, makedir },
131 { "mls", mlshelp, 1, 1, 1, mls },
132 { "mode", modehelp, 0, 1, 1, setmode },
ff00793c 133 { "modtime", modtimehelp, 0, 1, 1, modtime },
9069f68e
GM
134 { "mput", mputhelp, 1, 1, 1, mput },
135 { "nmap", nmaphelp, 0, 0, 1, setnmap },
ff00793c 136 { "nlist", nlisthelp, 1, 1, 1, ls },
9069f68e
GM
137 { "ntrans", ntranshelp, 0, 0, 1, setntrans },
138 { "open", connecthelp, 0, 0, 1, setpeer },
139 { "prompt", prompthelp, 0, 0, 0, setprompt },
140 { "proxy", proxyhelp, 0, 0, 1, doproxy },
141 { "sendport", porthelp, 0, 0, 0, setport },
142 { "put", sendhelp, 1, 1, 1, put },
143 { "pwd", pwdhelp, 0, 1, 1, pwd },
144 { "quit", quithelp, 0, 0, 0, quit },
145 { "quote", quotehelp, 1, 1, 1, quote },
146 { "recv", receivehelp, 1, 1, 1, get },
63c685da 147 { "remotehelp", remotehelp, 0, 1, 1, rmthelp },
cdc35b45
MK
148 { "rstatus", rmtstatushelp, 0, 1, 1, rmtstatus },
149 { "rhelp", remotehelp, 0, 1, 1, rmthelp },
9069f68e
GM
150 { "rename", renamehelp, 0, 1, 1, renamefile },
151 { "reset", resethelp, 0, 1, 1, reset },
152 { "rmdir", rmdirhelp, 0, 1, 1, removedir },
153 { "runique", runiquehelp, 0, 0, 1, setrunique },
154 { "send", sendhelp, 1, 1, 1, put },
ff00793c 155 { "size", sizecmdhelp, 1, 1, 1, sizecmd },
9069f68e
GM
156 { "status", statushelp, 0, 0, 1, status },
157 { "struct", structhelp, 0, 1, 1, setstruct },
ff00793c 158 { "system", systemhelp, 0, 1, 1, syst },
9069f68e
GM
159 { "sunique", suniquehelp, 0, 0, 1, setsunique },
160 { "tenex", tenexhelp, 0, 1, 1, settenex },
161 { "trace", tracehelp, 0, 0, 0, settrace },
162 { "type", typehelp, 0, 1, 1, settype },
163 { "user", userhelp, 0, 1, 1, user },
164 { "verbose", verbosehelp, 0, 0, 0, setverbose },
165 { "?", helphelp, 0, 0, 1, help },
5ac6fc46 166 { 0 },
53f01c40
SL
167};
168
71a655cd 169int NCMDS = (sizeof (cmdtab) / sizeof (cmdtab[0])) - 1;