[BACK]Return to cmdtab.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / ftp

Annotation of src/usr.bin/ftp/cmdtab.c, Revision 1.9

1.9     ! lukem       1: /*      $NetBSD: cmdtab.c,v 1.8 1996/11/25 09:53:50 fvdl Exp $      */
1.6       tls         2:
1.1       cgd         3: /*
1.3       cgd         4:  * Copyright (c) 1985, 1989, 1993, 1994
                      5:  *     The Regents of the University of California.  All rights reserved.
1.1       cgd         6:  *
                      7:  * Redistribution and use in source and binary forms, with or without
                      8:  * modification, are permitted provided that the following conditions
                      9:  * are met:
                     10:  * 1. Redistributions of source code must retain the above copyright
                     11:  *    notice, this list of conditions and the following disclaimer.
                     12:  * 2. Redistributions in binary form must reproduce the above copyright
                     13:  *    notice, this list of conditions and the following disclaimer in the
                     14:  *    documentation and/or other materials provided with the distribution.
                     15:  * 3. All advertising materials mentioning features or use of this software
                     16:  *    must display the following acknowledgement:
                     17:  *     This product includes software developed by the University of
                     18:  *     California, Berkeley and its contributors.
                     19:  * 4. Neither the name of the University nor the names of its contributors
                     20:  *    may be used to endorse or promote products derived from this software
                     21:  *    without specific prior written permission.
                     22:  *
                     23:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
                     24:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
                     25:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
                     26:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
                     27:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
                     28:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
                     29:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
                     30:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
                     31:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
                     32:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
                     33:  * SUCH DAMAGE.
                     34:  */
                     35:
                     36: #ifndef lint
1.6       tls        37: #if 0
                     38: static char sccsid[] = "@(#)cmdtab.c   8.4 (Berkeley) 10/9/94";
                     39: #else
1.9     ! lukem      40: static char rcsid[] = "$NetBSD: cmdtab.c,v 1.8 1996/11/25 09:53:50 fvdl Exp $";
1.6       tls        41: #endif
1.1       cgd        42: #endif /* not lint */
                     43:
1.3       cgd        44: #include <stdio.h>
1.1       cgd        45: #include "ftp_var.h"
                     46:
                     47: /*
                     48:  * User FTP -- Command Tables.
                     49:  */
                     50:
                     51: char   accounthelp[] = "send account command to remote server";
                     52: char   appendhelp[] =  "append to a file";
                     53: char   asciihelp[] =   "set ascii transfer type";
                     54: char   beephelp[] =    "beep when command completed";
                     55: char   binaryhelp[] =  "set binary transfer type";
                     56: char   casehelp[] =    "toggle mget upper/lower case id mapping";
                     57: char   cdhelp[] =      "change remote working directory";
                     58: char   cduphelp[] =    "change remote working directory to parent directory";
                     59: char   chmodhelp[] =   "change file permissions of remote file";
1.8       fvdl       60: char   connecthelp[] = "connect to remote ftp server";
1.1       cgd        61: char   crhelp[] =      "toggle carriage return stripping on ascii gets";
                     62: char   deletehelp[] =  "delete remote file";
                     63: char   debughelp[] =   "toggle/set debugging mode";
                     64: char   dirhelp[] =     "list contents of remote directory";
                     65: char   disconhelp[] =  "terminate ftp session";
                     66: char   domachelp[] =   "execute macro";
                     67: char   formhelp[] =    "set file transfer format";
                     68: char   globhelp[] =    "toggle metacharacter expansion of local file names";
1.7       lukem      69: char   hashhelp[] =    "toggle printing `#' marks; specify number to set size";
1.1       cgd        70: char   helphelp[] =    "print local help information";
                     71: char   idlehelp[] =    "get (set) idle timer on remote side";
                     72: char   lcdhelp[] =     "change local working directory";
1.9     ! lukem      73: char   lpwdhelp[] =    "print local working directory";
1.1       cgd        74: char   lshelp[] =      "list contents of remote directory";
                     75: char   macdefhelp[] =  "define a macro";
                     76: char   mdeletehelp[] = "delete multiple files";
                     77: char   mdirhelp[] =    "list contents of multiple remote directories";
                     78: char   mgethelp[] =    "get multiple files";
                     79: char   mkdirhelp[] =   "make directory on the remote machine";
                     80: char   mlshelp[] =     "list contents of multiple remote directories";
                     81: char   modtimehelp[] = "show last modification time of remote file";
                     82: char   modehelp[] =    "set file transfer mode";
                     83: char   mputhelp[] =    "send multiple files";
                     84: char   newerhelp[] =   "get file if remote file is newer than local file ";
                     85: char   nlisthelp[] =   "nlist contents of remote directory";
                     86: char   nmaphelp[] =    "set templates for default file name mapping";
                     87: char   ntranshelp[] =  "set translation table for default file name mapping";
                     88: char   porthelp[] =    "toggle use of PORT cmd for each data connection";
1.9     ! lukem      89: char   preservhelp[] = "toggle preservation of modification time of "
        !            90:                        "retreived files";
1.1       cgd        91: char   prompthelp[] =  "force interactive prompting on multiple commands";
                     92: char   proxyhelp[] =   "issue command on alternate connection";
                     93: char   pwdhelp[] =     "print working directory on remote machine";
                     94: char   quithelp[] =    "terminate ftp session and exit";
                     95: char   quotehelp[] =   "send arbitrary ftp command";
                     96: char   receivehelp[] = "receive file";
                     97: char   regethelp[] =   "get file restarting at end of local file";
                     98: char   remotehelp[] =  "get help from remote server";
                     99: char   renamehelp[] =  "rename file";
                    100: char   restarthelp[]=  "restart file transfer at bytecount";
                    101: char   rmdirhelp[] =   "remove directory on the remote machine";
                    102: char   rmtstatushelp[]="show status of remote machine";
                    103: char   runiquehelp[] = "toggle store unique for local files";
                    104: char   resethelp[] =   "clear queued command replies";
                    105: char   sendhelp[] =    "send one file";
1.4       cgd       106: char   passivehelp[] = "enter passive transfer mode";
1.9     ! lukem     107: char   sitehelp[] =    "send site specific command to remote server\n"
        !           108:                "\t\tTry \"rhelp site\" or \"site help\" for more information";
1.1       cgd       109: char   shellhelp[] =   "escape to the shell";
                    110: char   sizecmdhelp[] = "show size of remote file";
                    111: char   statushelp[] =  "show current status";
                    112: char   structhelp[] =  "set file transfer structure";
                    113: char   suniquehelp[] = "toggle store unique on remote machine";
                    114: char   systemhelp[] =  "show remote system type";
                    115: char   tenexhelp[] =   "set tenex file transfer type";
                    116: char   tracehelp[] =   "toggle packet tracing";
                    117: char   typehelp[] =    "set file transfer type";
                    118: char   umaskhelp[] =   "get (set) umask on remote side";
                    119: char   userhelp[] =    "send new user information";
                    120: char   verbosehelp[] = "toggle verbose mode";
                    121:
                    122: struct cmd cmdtab[] = {
                    123:        { "!",          shellhelp,      0,      0,      0,      shell },
                    124:        { "$",          domachelp,      1,      0,      0,      domacro },
                    125:        { "account",    accounthelp,    0,      1,      1,      account},
                    126:        { "append",     appendhelp,     1,      1,      1,      put },
                    127:        { "ascii",      asciihelp,      0,      1,      1,      setascii },
                    128:        { "bell",       beephelp,       0,      0,      0,      setbell },
                    129:        { "binary",     binaryhelp,     0,      1,      1,      setbinary },
                    130:        { "bye",        quithelp,       0,      0,      0,      quit },
                    131:        { "case",       casehelp,       0,      0,      1,      setcase },
                    132:        { "cd",         cdhelp,         0,      1,      1,      cd },
                    133:        { "cdup",       cduphelp,       0,      1,      1,      cdup },
                    134:        { "chmod",      chmodhelp,      0,      1,      1,      do_chmod },
                    135:        { "close",      disconhelp,     0,      1,      1,      disconnect },
                    136:        { "cr",         crhelp,         0,      0,      0,      setcr },
                    137:        { "delete",     deletehelp,     0,      1,      1,      delete },
                    138:        { "debug",      debughelp,      0,      0,      0,      setdebug },
                    139:        { "dir",        dirhelp,        1,      1,      1,      ls },
                    140:        { "disconnect", disconhelp,     0,      1,      1,      disconnect },
1.9     ! lukem     141:        { "exit",       quithelp,       0,      0,      0,      quit },
1.1       cgd       142:        { "form",       formhelp,       0,      1,      1,      setform },
1.7       lukem     143:        { "ftp",        connecthelp,    0,      0,      1,      setpeer },
1.1       cgd       144:        { "get",        receivehelp,    1,      1,      1,      get },
                    145:        { "glob",       globhelp,       0,      0,      0,      setglob },
                    146:        { "hash",       hashhelp,       0,      0,      0,      sethash },
                    147:        { "help",       helphelp,       0,      0,      1,      help },
                    148:        { "idle",       idlehelp,       0,      1,      1,      idle },
                    149:        { "image",      binaryhelp,     0,      1,      1,      setbinary },
                    150:        { "lcd",        lcdhelp,        0,      0,      0,      lcd },
1.9     ! lukem     151:        { "lpwd",       lpwdhelp,       0,      0,      0,      lpwd },
1.1       cgd       152:        { "ls",         lshelp,         1,      1,      1,      ls },
                    153:        { "macdef",     macdefhelp,     0,      0,      0,      macdef },
                    154:        { "mdelete",    mdeletehelp,    1,      1,      1,      mdelete },
                    155:        { "mdir",       mdirhelp,       1,      1,      1,      mls },
                    156:        { "mget",       mgethelp,       1,      1,      1,      mget },
                    157:        { "mkdir",      mkdirhelp,      0,      1,      1,      makedir },
                    158:        { "mls",        mlshelp,        1,      1,      1,      mls },
1.3       cgd       159:        { "mode",       modehelp,       0,      1,      1,      setftmode },
1.1       cgd       160:        { "modtime",    modtimehelp,    0,      1,      1,      modtime },
                    161:        { "mput",       mputhelp,       1,      1,      1,      mput },
1.9     ! lukem     162:        { "msend",      mputhelp,       1,      1,      1,      mput },
1.1       cgd       163:        { "newer",      newerhelp,      1,      1,      1,      newer },
                    164:        { "nmap",       nmaphelp,       0,      0,      1,      setnmap },
                    165:        { "nlist",      nlisthelp,      1,      1,      1,      ls },
                    166:        { "ntrans",     ntranshelp,     0,      0,      1,      setntrans },
                    167:        { "open",       connecthelp,    0,      0,      1,      setpeer },
1.4       cgd       168:        { "passive",    passivehelp,    0,      0,      0,      setpassive },
1.9     ! lukem     169:        { "preserve",   preservhelp,    0,      0,      0,      setpreserve },
1.1       cgd       170:        { "prompt",     prompthelp,     0,      0,      0,      setprompt },
                    171:        { "proxy",      proxyhelp,      0,      0,      1,      doproxy },
                    172:        { "sendport",   porthelp,       0,      0,      0,      setport },
                    173:        { "put",        sendhelp,       1,      1,      1,      put },
                    174:        { "pwd",        pwdhelp,        0,      1,      1,      pwd },
                    175:        { "quit",       quithelp,       0,      0,      0,      quit },
                    176:        { "quote",      quotehelp,      1,      1,      1,      quote },
                    177:        { "recv",       receivehelp,    1,      1,      1,      get },
                    178:        { "reget",      regethelp,      1,      1,      1,      reget },
                    179:        { "rstatus",    rmtstatushelp,  0,      1,      1,      rmtstatus },
                    180:        { "rhelp",      remotehelp,     0,      1,      1,      rmthelp },
                    181:        { "rename",     renamehelp,     0,      1,      1,      renamefile },
                    182:        { "reset",      resethelp,      0,      1,      1,      reset },
                    183:        { "restart",    restarthelp,    1,      1,      1,      restart },
                    184:        { "rmdir",      rmdirhelp,      0,      1,      1,      removedir },
                    185:        { "runique",    runiquehelp,    0,      0,      1,      setrunique },
                    186:        { "send",       sendhelp,       1,      1,      1,      put },
                    187:        { "site",       sitehelp,       0,      1,      1,      site },
                    188:        { "size",       sizecmdhelp,    1,      1,      1,      sizecmd },
                    189:        { "status",     statushelp,     0,      0,      1,      status },
                    190:        { "struct",     structhelp,     0,      1,      1,      setstruct },
                    191:        { "system",     systemhelp,     0,      1,      1,      syst },
                    192:        { "sunique",    suniquehelp,    0,      0,      1,      setsunique },
                    193:        { "tenex",      tenexhelp,      0,      1,      1,      settenex },
                    194:        { "trace",      tracehelp,      0,      0,      0,      settrace },
                    195:        { "type",       typehelp,       0,      1,      1,      settype },
                    196:        { "user",       userhelp,       0,      1,      1,      user },
                    197:        { "umask",      umaskhelp,      0,      1,      1,      do_umask },
                    198:        { "verbose",    verbosehelp,    0,      0,      0,      setverbose },
                    199:        { "?",          helphelp,       0,      0,      1,      help },
                    200:        { 0 },
                    201: };
                    202:
                    203: int    NCMDS = (sizeof (cmdtab) / sizeof (cmdtab[0])) - 1;

CVSweb <webmaster@jp.NetBSD.org>