ckuusy.c
上传用户:dufan58
上传日期:2007-01-05
资源大小:3407k
文件大小:67k
源码类别:

通讯/手机编程

开发平台:

Windows_Unix

  1. #include "ckcsym.h"
  2. #define XFATAL fatal
  3. #ifndef NOCMDL
  4. /*  C K U U S Y --  "User Interface" for Unix Kermit, part Y  */
  5. /*  Command-Line Argument Parser */
  6. /*
  7.   Author: Frank da Cruz <fdc@columbia.edu>
  8.   Columbia University, New York City.
  9.   Copyright (C) 1985, 2000,
  10.     Trustees of Columbia University in the City of New York.
  11.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  12.     copyright text in the ckcmai.c module for disclaimer and permissions.
  13. */
  14. #include "ckcdeb.h"
  15. #include "ckcasc.h"
  16. #include "ckcker.h"
  17. #include "ckucmd.h"
  18. #include "ckcnet.h"
  19. #include "ckuusr.h"
  20. #include <signal.h>
  21. #ifdef OS2
  22. #include <io.h>
  23. #endif /* OS2 */
  24. extern int inserver, fncnv, f_save, xfermode;
  25. #ifdef PATTERNS
  26. extern int patterns;
  27. #endif /* PATTERNS */
  28. #ifndef NOICP
  29. extern int cmdint;
  30. #endif /* NOICP */
  31. extern int suspend;
  32. #ifdef NETCONN
  33. #ifdef ANYX25
  34. extern int revcall, closgr, cudata;
  35. extern char udata[];
  36. extern int x25fd;
  37. #endif /* ANYX25 */
  38. #ifndef VMS
  39. #ifndef OS2
  40. #ifndef OSK
  41. extern
  42. #endif /* OSK */
  43. #endif /* OS2 */
  44. #endif /* VMS */
  45. int telnetfd;
  46. extern struct keytab netcmd[];
  47. extern int tn_exit;
  48. #ifndef NOICP
  49. #ifndef NODIAL
  50. extern int nnets, nnetdir;              /* Network services directory */
  51. extern char *netdir[];
  52. extern char *nh_p[];                    /* Network directory entry pointers */
  53. extern char *nh_p2[];                   /* Network directory entry nettype */
  54. extern char *nh_px[4][MAXDNUMS + 1];
  55. #endif /* NODIAL */
  56. extern int nhcount;
  57. extern char * n_name;                   /* Network name pointer */
  58. #endif /* NOICP */
  59. #endif /* NETCONN */
  60. #ifndef NOSPL
  61. extern int nmac;
  62. extern struct mtab *mactab;
  63. extern char uidbuf[];
  64. #endif /* NOSPL */
  65. #ifdef CK_LOGIN
  66. extern int logintimo;
  67. #endif /* CK_LOGIN */
  68. extern char * myname, * dftty;
  69. extern int howcalled;
  70. extern char *ckxsys, *ckzsys, **xargv, **cmlist, *clcmds;
  71. extern int action, cflg, xargc, cnflg, local, quiet, escape, network, mdmtyp,
  72.   bgset, backgrd, xargs, binary, parity, turn, turnch, duplex, flow, clfils,
  73.   noinit, stayflg, nettype, cfilef, noherald, cmask, cmdmsk, exitonclose,
  74.   haveline, justone, cxtype, xfinish, ttnproto;
  75. extern long speed;
  76. extern char ttname[];
  77. extern char * pipedata, * cmdfil;
  78. char * xargv0 = "";
  79. #ifndef NOXFER
  80. extern char *cmarg, *cmarg2;
  81. extern int nfils, stdouf, stdinf, displa, maxrps, rpsiz, ckwarn, urpsiz,
  82.   wslotr, swcapr, ckdelay, recursive, reliable, xreliable, fnspath, fncact,
  83.   clearrq, setreliable;
  84. #ifdef PIPESEND
  85. extern int usepipes, pipesend;
  86. #endif /* PIPESEND */
  87. extern int protocol;
  88. #endif /* NOXFER */
  89. #ifdef OS2
  90. extern struct keytab os2devtab[];
  91. extern int nos2dev;
  92. extern int ttslip;
  93. #ifdef OS2PM
  94. extern int os2pm;
  95. #endif /* OS2PM */
  96. #endif /* OS2 */
  97. #ifdef CK_NETBIOS
  98. extern unsigned char NetBiosAdapter;
  99. #endif /* CK_NETBIOS */
  100. #ifdef XFATAL
  101. #undef XFATAL
  102. #endif /* XFATAL */
  103. #ifndef NOICP
  104. #ifndef NODIAL
  105. extern int nmdm, telephony;
  106. extern struct keytab mdmtab[];
  107. extern int usermdm, dialudt;
  108. #endif /* NODIAL */
  109. extern int what;
  110. _PROTOTYP(static int pmsg, (char *) );
  111. _PROTOTYP(static int fmsg, (char *) );
  112. static int pmsg(s) char *s; { printf("%sn", s); return(0); }
  113. static int fmsg(s) char *s; { fatal(s); return(0); }
  114. #define XFATAL(s) return(what==W_COMMAND?pmsg(s):fmsg(s))
  115. #else
  116. #define XFATAL fatal
  117. #endif /* NOICP */
  118. #ifndef NOCMDL
  119. /* Command-Line usage message (must fit in 24x80) */
  120. static
  121. char *hlp1[] = {
  122. #ifndef NOICP
  123. " [cmdfile] [-x arg [-x arg]...[-yyy]..] [ = text ] ]n",
  124. #else
  125. "[-x arg [-x arg]...[-yyy]..]n",
  126. #endif /* NOICP */
  127. "  -x is an option requiring an argument, -y an option with no argument.n",
  128. "actions:n",
  129. "  -s files  send files                  -r  receive filesn",
  130. "  -s -      send from stdin             -k  receive files to stdoutn",
  131. #ifndef NOSERVER
  132. "  -x        enter server mode           -f  finish remote servern",
  133. #else
  134. "  -f        finish remote servern",
  135. #endif /* NOSERVER */
  136. "  -g files  get remote files from server (quote wildcards)n",
  137. "  -a name   alternate file name, used with -s, -r, -gn",
  138. #ifndef NOLOCAL
  139. "  -c        connect (before file transfer), used with -l and -bn",
  140. "  -n        connect (after file transfer), used with -l and -bn",
  141. #endif /* NOLOCAL */
  142. "settings:n",
  143. #ifndef NOLOCAL
  144. "  -l dev    communication line device   -q  quiet during file transfern",
  145. #ifdef NETCONN
  146. "  -j host   network host name[:port]    -i  binary transfer (-T = text)n",
  147. #else
  148. "  -i        binary file transfern",
  149. #endif /* NETCONN */
  150. "  -b bps    line speed, e.g. 19200      -t  half duplex, xon handshaken",
  151. #else
  152. "  -i        binary file transfern",
  153. #endif /* NOLOCAL */
  154. #ifdef DEBUG
  155. "  -p x      parity, x = e,o,m,s, or n   -d  log debug info to debug.logn",
  156. #else
  157. "  -p x      parity, x = e,o,m,s, or nn",
  158. #endif /* DEBUG */
  159. #ifndef NOICP
  160. "  -y name   alternate init file name    -Y  no init filen",
  161. #else
  162. #endif /* NOICP */
  163. "  -e n      receive packet length       -w  write over filesn",
  164. #ifdef UNIX
  165. "  -v n      sliding window slots        -z  force foregroundn",
  166. #else
  167. "  -v n      sliding window slotsn",
  168. #endif /* UNIX */
  169. #ifndef NODIAL
  170. "  -m name   modem type                  -R  remote-only advisoryn",
  171. #endif /* NODIAL */
  172. /*
  173.   If all this stuff is defined, we run off the screen...
  174. */
  175. #ifdef CK_NETBIOS
  176. "  -N n      NetBIOS adapter numbern",
  177. #endif /* CK_NETBIOS */
  178. #ifdef ANYX25
  179. " -o index   X.25 closed user group call -X  X.25 addressn",
  180. " -U string  X.25 call user data         -u  X.25 reverse charge calln",
  181. " -Z n       X.25 connection open file descriptorn",
  182. #endif /* ANYX25 */
  183. #ifndef NOICP
  184. "If no action command is included, or -S is, enter interactive dialog.n",
  185. "Type HELP OPTIONS at the prompt for further info.n",
  186. #else
  187. "Operation by command-line options only.n",
  188. "See the manual "Using C-Kermit" for complete information.n",
  189. #endif /* NOICP */
  190. ""
  191. };
  192. #ifndef NOHELP
  193. /* Command-line option help lines.  Update this when adding new options! */
  194. char * opthlp[128];                     /* Option help */
  195. char * arghlp[128];                     /* Argument for option */
  196. int optact[128];                        /* Action-option flag */
  197. #endif /* NOHELP */
  198. VOID
  199. fatal2(msg1,msg2) char *msg1, *msg2; {
  200.     char buf[256];
  201.     if (!msg1) msg1 = "";
  202.     if (!msg2) msg2 = "";
  203.     sprintf(buf,""%s" - %s",msg1,msg2);
  204. #ifndef NOICP
  205.     if (what == W_COMMAND)
  206.       printf("%sn",buf);
  207.     else
  208. #endif /* NOICP */
  209.       fatal((char *)buf);
  210. }
  211. static SIGTYP
  212. #ifdef CK_ANSI
  213. cl_int(int dummy)
  214. #else /* CK_ANSI */
  215. cl_int(dummy) int dummy;
  216. #endif /* CK_ANSI */
  217. { /* Command-line interrupt handler */
  218.     doexit(BAD_EXIT,1);
  219.     SIGRETURN;
  220. }
  221. /*  U S A G E */
  222. VOID
  223. usage() {
  224. #ifndef MINIX
  225.     conol("Usage: ");
  226.     conol(xargv0);
  227.     conola(hlp1);
  228. #else
  229.     conol("Usage: ");
  230.     conol(xargv0);
  231.     conol(" [-x arg [-x arg]...[-yyy]..] ]n");
  232. #endif /* MINIX */
  233. }
  234. #endif /* NOCMDL */
  235. /*  C M D L I N  --  Get arguments from command line  */
  236. int
  237. cmdlin() {
  238.     char x;                             /* Local general-purpose char */
  239. #ifndef NOXFER
  240.     cmarg = "";                         /* Initialize globals */
  241.     cmarg2 = "";
  242. #endif /* NOXFER */
  243.     action = 0;
  244.     cflg = 0;
  245.     xargv0 = xargv[0];
  246.     debug(F111,"cmdlin myname",myname,howcalled);
  247.     signal(SIGINT,cl_int);
  248. /* Here we handle different "Command Line Personalities" */
  249. #ifdef TCPSOCKET
  250.     if (howcalled == I_AM_TELNET) {     /* If I was called as Telnet... */
  251.         if (--xargc > 0) {              /* And I have a hostname... */
  252.             xargv++;
  253.             ckstrncpy(ttname,*xargv,TTNAMLEN+1);
  254.             debug(F110,"cmdlin telnet host",ttname,0);
  255. #ifndef NOICP
  256. #ifndef NODIAL
  257.             nhcount = 0;                /* Check network directory */
  258.             debug(F101,"cmdlin nnetdir","",nnetdir);
  259.             if (nnetdir > 0)            /* If there is a directory... */
  260.               lunet(*xargv);            /* Look up the name */
  261.             else                        /* If no directory */
  262.               nhcount = 0;              /* we didn't find anything there */
  263. #ifdef DEBUG
  264.             if (deblog) {
  265.                 debug(F101,"cmdlin lunet nhcount","",nhcount);
  266.                 if (nhcount > 0) {
  267.                     debug(F110,"cmdlin lunet nh_p[0]",nh_p[0],0);
  268.                     debug(F110,"cmdlin lunet nh_p2[0]",nh_p2[0],0);
  269.                     debug(F110,"cmdlin lunet nh_px[0][0]",nh_px[0][0],0);
  270.                 }
  271.             }
  272. #endif /* DEBUG */
  273.             if (nhcount > 0 && nh_p2[0]) /* If network type specified */
  274.               if (ckstrcmp(nh_p2[0],"tcp/ip",6,0)) /* it must be TCP/IP */
  275.                 nhcount = 0;
  276.             if (nhcount == 1) {         /* Still OK, so make substitution */
  277.                 ckstrncpy(ttname,nh_p[0],TTNAMLEN+1);
  278.                 debug(F110,"cmdlin lunet substitution",ttname,0);
  279.             }
  280. #endif /* NODIAL */
  281. #endif /* NOICP */
  282.             if (--xargc > 0) {          /* Service specified on cmd line? */
  283.                 xargv++;
  284.                 strcat(ttname,":");
  285.                 strcat(ttname,*xargv);
  286.                 debug(F110,"cmdlin telnet host2",ttname,0);
  287.             }
  288. #ifndef NOICP
  289. #ifndef NODIAL
  290.             else if (nhcount) {         /* No - how about in net directory? */
  291.                 if (nh_px[0][0]) {
  292.                     strcat(ttname,":");
  293.                     strcat(ttname,nh_px[0][0]);
  294.                 }
  295.             }
  296. #endif /* NODIAL */
  297. #endif /* NOICP */
  298.             local = 1;                  /* Try to open the connection */
  299.             nettype = NET_TCPB;
  300.             mdmtyp = -nettype;
  301.             if (ttopen(ttname,&local,mdmtyp,0) < 0) {
  302.                 XFATAL("can't open host connection");
  303.             }
  304.             network = 1;                /* It's open */
  305. #ifdef CKLOGDIAL
  306.             dolognet();
  307. #endif /* CKLOGDIAL */
  308. #ifndef NOXFER
  309.             reliable = 1;               /* It's reliable */
  310.             xreliable = 1;              /* ... */
  311.             setreliable = 1;
  312. #endif /* NOXFER */
  313.             cflg = 1;                   /* Connect */
  314.             stayflg = 1;                /* Stay */
  315.             tn_exit = 1;                /* Telnet-like exit condition */
  316.             quiet = 1;
  317.             exitonclose = 1;            /* Exit when connection closes */
  318. #ifndef NOSPL
  319.             if (local) {
  320.                 if (nmac) {                     /* Any macros defined? */
  321.                     int k;                      /* Yes */
  322.                     k = mlook(mactab,"on_open",nmac);   /* Look this up */
  323.                     if (k >= 0) {                       /* If found, */
  324.                         if (dodo(k,ttname,0) > -1)      /* set it up, */
  325.                           parser(1);                    /* and execute it */
  326.                     }
  327.                 }
  328.             }
  329. #endif /* NOSPL */
  330.         }
  331.         return(0);
  332.     }
  333. #ifdef COMMENT
  334. #ifdef RLOGCODE
  335.     else if (howcalled == I_AM_RLOGIN) { /* If I was called as Rlogin... */
  336.         /* Add rlogin command-line parsing here... */
  337.         return(0);
  338.     }
  339. #endif /* RLOGCODE */
  340. #endif /* COMMENT */
  341. #endif /* TCPSOCKET */
  342. /*
  343.   From here down: We were called as "kermit" or "iksd".
  344.   If we were started directly from a Kermit application file, its name is
  345.   in argv[1], so skip past it.
  346. */
  347.     if (xargc > 1) {
  348.         int n = 1;
  349.         if (*xargv[1] != '-') {
  350. #ifdef KERBANG
  351.             /* If we were started with a Kerbang script, the script */
  352.             /* arguments were already picked up in prescan / cmdini() */
  353.             /* and there is nothing here for us anyway. */
  354.             if (!strcmp(xargv[1],"+"))
  355.               return(0);
  356. #endif /* KERBANG */
  357.             if (cfilef) {               /* Command file found in prescan() */
  358.                 xargc -= n;             /* Skip past it */
  359.                 xargv += n;
  360.                 cfilef = 0;
  361.                 debug(F101,"cmdlin cfilef set to 0","",cfilef);
  362.             }
  363.         }
  364.     }
  365. /*
  366.  Regular Unix-style command line parser, conforming with 'A Proposed Command
  367.  Syntax Standard for Unix Systems', Hemenway & Armitage, Unix/World, Vol.1,
  368.  No.3, 1984.
  369. */
  370.     while (--xargc > 0) {               /* Go through command line words */
  371.         xargv++;
  372.         debug(F111,"cmdlin xargv",*xargv,xargc);
  373.         if (**xargv == '=')
  374.           return(0);
  375.         if (!strcmp(*xargv,"--"))       /* getopt() conformance */
  376.           return(0);
  377. #ifdef VMS
  378.         else if (**xargv == '/')
  379.           continue;
  380. #endif /* VMS */
  381.         else if (**xargv == '-') {      /* Got an option (begins with dash) */
  382.             int xx;
  383.             x = *(*xargv+1);            /* Get the option letter */
  384.             debug(F111,"cmdlin args 1",*xargv,xargc);
  385.             xx = doarg(x);
  386.             debug(F101,"cmdlin doarg","",xx);
  387.             debug(F111,"cmdlin args 2",*xargv,xargc);
  388.             if (xx < 0) {
  389. #ifndef NOICP
  390.                 if (what == W_COMMAND)
  391.                   return(0);
  392.                 else
  393. #endif /* NOICP */
  394.                   {
  395. #ifdef OS2
  396.                       sleep(1);         /* Give it a chance... */
  397. #endif /* OS2 */
  398.                       doexit(BAD_EXIT,1); /* Go handle option */
  399.                   }
  400.             }
  401.         } else {                        /* No dash where expected */
  402.             char buf[128];
  403.             sprintf(buf,
  404.                     "invalid command-line option, type "%s -h" for help",
  405.                     myname
  406.                     );
  407.             fatal2(*xargv,buf);
  408.         }
  409.     }
  410. #ifdef DEBUG
  411.     if (deblog) {
  412. #ifndef NOICP
  413.         debug(F101,"cmdlin what","",what);
  414. #endif /* NOICP */
  415.         debug(F101,"cmdlin action","",action);
  416. #ifndef NOXFER
  417.         debug(F101,"cmdlin stdouf","",stdouf);
  418. #endif /* NOXFER */
  419.     }
  420. #endif /* DEBUG */
  421. #ifdef NOICP
  422.     if (!action && !cflg && !cnflg) {
  423.         debug(F100,"cmdlin NOICP fatal no action","",0);
  424.         XFATAL("?No actions specified on command line");
  425.     }
  426. #else
  427.     if (inserver && what == 0) {        /* Internet Kermit server checks */
  428.         if (local || (action != 0 && action != 'x')) {
  429.             if (local)
  430.               printf("localrn");
  431.             if (action)
  432.               printf("action=%crn",action);
  433.             debug(F100,"cmdlin fatal 1","",0);
  434.             XFATAL("No actions or connections allowed with -A");
  435.         }
  436.     }
  437. #endif /* NOICP */
  438. #ifndef NOLOCAL
  439.     if (!local) {
  440.         if ((action == 'c') || (cflg != 0)) {
  441.             debug(F100,"cmdlin fatal 2","",0);
  442.             XFATAL("-l or -j or -X required");
  443.         }
  444.     }
  445. #endif /* NOLOCAL */
  446. #ifndef NOXFER
  447.     if (*cmarg2 != 0) {
  448.         if ((action != 's') && (action != 'r') && (action != 'v')) {
  449.             debug(F100,"cmdlin fatal 3","",0);
  450.             XFATAL("-a without -s, -r, or -g");
  451.         }
  452.         if (action == 'r' || action == 'v') {
  453. #ifdef CK_TMPDIR
  454.             if (isdir(cmarg2)) {        /* -a is a directory */
  455.                 if (!zchdir(cmarg2)) {  /* try to change to it */
  456.                     debug(F100,"cmdlin fatal 4","",0);
  457.                     XFATAL("can't change to '-a' directory");
  458.                 } else cmarg2 = "";
  459.             } else
  460. #endif /* CK_TMPDIR */
  461.               if (zchko(cmarg2) < 0) {
  462.                   debug(F100,"cmdlin fatal 5","",0);
  463.                   XFATAL("write access to -a file denied");
  464.               }
  465.         }
  466.     }
  467.     if ((action == 'v') && (stdouf) && (!local)) {
  468.         if (is_a_tty(1)) {
  469.             debug(F100,"cmdlin fatal 6","",0);
  470.             XFATAL("unredirected -k can only be used in local mode");
  471.         }
  472.     }
  473.     if ((action == 's') || (action == 'v') ||
  474.         (action == 'r') || (action == 'x')) {
  475.         if (local)
  476.           displa = 1;
  477.         if (stdouf) {
  478.             displa = 0;
  479.             quiet = 1;
  480.         }
  481.     }
  482.     if (quiet) displa = 0;              /* No display if quiet requested */
  483. #endif /* NOXFER */
  484. #ifdef DEBUG
  485.     if (action)
  486.       debug(F000,"cmdlin returns action","",action);
  487.     else
  488.       debug(F101,"cmdlin returns action","",action);
  489. #endif /* DEBUG */
  490.     return(action);                     /* Then do any requested protocol */
  491. }
  492. /* Extended argument parsing: --keyword[:value] (or =value) */
  493. /*
  494.   XA_xxxx symbols are defined in ckuusr.h.
  495.   If you add a new one, also remember to update doshow(),
  496.   SHXOPT section, in ckuus5.c.
  497. */
  498. #ifndef NOICP
  499. struct keytab xargtab[] = {
  500. #ifdef CK_LOGIN
  501.     "anonymous",   XA_ANON, CM_ARG|CM_PRE,
  502. #endif /* CK_LOGIN */
  503.     "bannerfile",  XA_BAFI, CM_ARG,
  504.     "cdfile",      XA_CDFI, CM_ARG,
  505.     "cdmessage",   XA_CDMS, CM_ARG,
  506.     "cdmsg",       XA_CDMS, CM_ARG|CM_INV,
  507. #ifdef IKSDB
  508.     "database",    XA_DBAS, CM_ARG|CM_PRE,
  509.     "dbfile",      XA_DBFI, CM_ARG|CM_PRE,
  510. #endif /* IKSDB */
  511.     "help",        XA_HELP, 0,
  512. #ifndef NOHELP
  513.     "helpfile",    XA_HEFI, CM_ARG,
  514. #endif /* NOHELP */
  515. #ifdef CK_LOGIN
  516.     "initfile",    XA_ANFI, CM_ARG|CM_PRE,
  517. #endif /* CK_LOGIN */
  518.     "nointerrupts",XA_NOIN, CM_PRE,
  519. #ifdef CK_LOGIN
  520. #ifdef CK_PERM
  521.     "permissions", XA_PERM, CM_ARG|CM_PRE,
  522.     "perms",       XA_PERM, CM_ARG|CM_PRE|CM_INV,
  523. #endif /* CK_PERM */
  524. #ifdef CK_LOGIN
  525.     "privid",      XA_PRIV, CM_ARG|CM_PRE,
  526. #endif /* CK_LOGIN */
  527. #ifdef UNIX
  528.     "root",        XA_ROOT, CM_ARG|CM_PRE,
  529. #endif /* UNIX */
  530. #ifdef CKSYSLOG
  531.     "syslog",      XA_SYSL, CM_ARG|CM_PRE,
  532.     "timeout",     XA_TIMO, CM_ARG|CM_PRE,
  533. #endif /* CKSYSLOG */
  534.     "userfile",    XA_USFI, CM_ARG|CM_PRE,
  535. #ifdef CKWTMP
  536.     "wtmpfile",    XA_WTFI, CM_ARG|CM_PRE,
  537.     "wtmplog",     XA_WTMP, CM_ARG|CM_PRE,
  538. #endif /* CKWTMP */
  539. #endif /* CK_LOGIN */
  540.     "xferfile",    XA_IKFI, CM_ARG|CM_PRE,
  541.     "xferlog",     XA_IKLG, CM_ARG|CM_PRE,
  542.     "",            0,       0
  543. };
  544. int nxargs = sizeof(xargtab)/sizeof(struct keytab) - 1;
  545. static struct keytab oktab[] = {
  546.     "0",     0, 0,
  547.     "1",     1, 0,
  548.     "2",     2, 0,
  549.     "3",     3, 0,
  550.     "4",     4, 0,
  551.     "5",     5, 0,
  552.     "6",     6, 0,
  553.     "7",     7, 0,
  554.     "8",     8, 0,
  555.     "9",     9, 0,
  556.     "false", 0, 0,
  557.     "no",    0, 0,
  558.     "off",   0, 0,
  559.     "ok",    1, 0,
  560.     "on",    1, 0,
  561.     "true",  1, 0,
  562.     "yes",   1, 0
  563. };
  564. static int noktab = sizeof(oktab)/sizeof(struct keytab);
  565. #define XARGBUFL 32
  566. char * bannerfile = NULL;
  567. char * helpfile = NULL;
  568. extern int xferlog;
  569. extern char * xferfile;
  570. #ifndef NOHELP
  571. char * xopthlp[XA_MAX+1];               /* Extended option help */
  572. char * xarghlp[XA_MAX+1];               /* Extended argument for option */
  573. static VOID
  574. inixopthlp() {
  575.     int i, j, n;
  576.     for (i = 0; i <= XA_MAX; i++) {     /* Initialize all to null */
  577.         xopthlp[i] = NULL;
  578.         xarghlp[i] = NULL;
  579.     }
  580.     for (i = 0; i < nxargs; i++) {      /* Then for each defined keyword */
  581.         j = xargtab[i].kwval;           /* index by associated value */
  582.         if (j < 0 || j > XA_MAX)
  583.           continue;
  584.         switch (j) {
  585. #ifdef CK_LOGIN
  586.           case XA_ANON:                 /* "--anonymous" */
  587.             xopthlp[j] = "--anonymous:{on,off} [IKSD only]";
  588.             xarghlp[j] = "Whether to allow anonymous IKSD logins";
  589.             break;
  590.   case XA_PRIV:
  591.             xopthlp[j] = "--privid:{on,off} [IKSD only]";
  592.             xarghlp[j] = "Whether to allow privileged IDs to login to IKSD";
  593.             break;
  594. #endif /* CK_LOGIN */
  595.           case XA_BAFI:                 /* "--bannerfile" */
  596.             xopthlp[j] = "--bannerfile:<filename>";
  597.             xarghlp[j] = "File to display upon startup or IKSD login";
  598.             break;
  599.           case XA_CDFI:                 /* "--cdfile" */
  600.             xopthlp[j] = "--cdfile:<filename>";
  601.             xarghlp[j] = "File to display when server changes directory";
  602.             break;
  603.           case XA_CDMS:                 /* "--cdmessage" */
  604.             xopthlp[j] = "--cdmessage:{on,off}";
  605.             xarghlp[j] = "Whether to display CD message file";
  606.             break;
  607.           case XA_HELP:                 /* "--help" */
  608.             xopthlp[j] = "--help";
  609.             xarghlp[j] = "Print this help text about extended options";
  610.             break;
  611.           case XA_HEFI:                 /* "--help" */
  612.             xopthlp[j] = "--helpfile:<filename>";
  613.             xarghlp[j] = "File containing custom info for HELP command";
  614.             break;
  615.           case XA_IKFI:                 /* "--xferfile" */
  616.             xopthlp[j] = "--xferfile:<filename> [IKSD only]";
  617.             xarghlp[j] = "Name of ftpd-like logfile.";
  618.             break;
  619.           case XA_IKLG:                 /* "--xferlog" */
  620.             xopthlp[j] = "--xferlog:{on,off} [IKSD only]";
  621.             xarghlp[j] = "Whether to keep an ftpd-like logfile.";
  622.             break;
  623. #ifdef CK_LOGIN
  624.           case XA_ANFI:                 /* "--initfile" */
  625.             xopthlp[j] = "--initfile:<filename> [IKSD only]";
  626.             xarghlp[j] = "Initialization file for anonymous users.";
  627.             break;
  628. #ifdef CK_PERM
  629.           case XA_PERM:                 /* "--permissions" */
  630.             xopthlp[j] = "--permissions:<octalnum> [IKSD only]";
  631.             xarghlp[j] = "Permissions for files uploaded by anonymous users.";
  632.             break;
  633. #endif /* CK_PERM */
  634. #ifdef UNIX
  635.           case XA_ROOT:                 /* "--root" */
  636.             xopthlp[j] = "--root:<directory> [IKSD only]";
  637.             xarghlp[j] = "File-system root for anonymous users.";
  638.             break;
  639. #endif /* UNIX */
  640. #endif /* CK_LOGIN */
  641. #ifdef CKSYSLOG
  642.           case XA_SYSL:                 /* "--syslog" */
  643.             xopthlp[j] = "--syslog:<digit> [IKSD only]";
  644.             xarghlp[j] = "Syslog recording level, 0-6.";
  645.             break;
  646. #endif /* CKSYSLOG */
  647.           case XA_USFI:                 /* "--userfile" */
  648.             xopthlp[j] = "--userfile:<filename> [IKSD only]";
  649.             xarghlp[j] = "Forbidden user file.";
  650.             break;
  651. #ifdef CKWTMP
  652.           case XA_WTFI:                 /* "--wtmpfile" */
  653.             xopthlp[j] = "--wtmpfile:<filename> [IKSD only]";
  654.             xarghlp[j] = "Name of wtmp logfile.";
  655.             break;
  656.           case XA_WTMP:                 /* "--wtmplog" */
  657.             xopthlp[j] = "--wtmplog:{on,off} [IKSD only]";
  658.             xarghlp[j] = "Whether to keep a wtmp logfile.";
  659.             break;
  660. #endif /* CKWTMP */
  661. #ifdef CK_LOGIN
  662.           case XA_TIMO:                 /* "--timeout" */
  663.             xopthlp[j] = "--timeout:<seconds> [IKSD only]";
  664.             xarghlp[j] =
  665.  "How long to wait for login before closing the connection.";
  666.             break;
  667. #endif /* CK_LOGIN */
  668.           case XA_NOIN:
  669.             xopthlp[j] = "--nointerrupts";
  670.             xarghlp[j] = "Disable keyboard interrupts.";
  671.             break;
  672. #ifdef IKSDB
  673.           case XA_DBAS:
  674.             xopthlp[j] = "--database:{on,off}";
  675.             xarghlp[j] = "Enable/Disable IKSD database (IKSD only)";
  676.             break;
  677.           case XA_DBFI:
  678.             xopthlp[j] = "--dbfile:<filename>";
  679.             xarghlp[j] = "Specify IKSD database file (IKSD only)";
  680.             break;
  681. #endif /* IKSDB */
  682.         }
  683.     }
  684. }
  685. VOID
  686. iniopthlp() {
  687.     int i;
  688.     for (i = 0; i < 128; i++) {
  689.         optact[i] = 0;
  690.         switch(i) {
  691. #ifdef OS2
  692.           case '#':                     /* K95 Startup Flags */
  693.             opthlp[i] = "Kermit 95 Startup Flags";
  694.             arghlp[i] =
  695.               "   1 - turn off Win95 special fixesn"
  696.               "   2 - do not load optional network dllsn"
  697.               "   4 - do not load optional tapi dllsn"
  698.               "   8 - do not load optional kerberos dllsn"
  699.               "  16 - do not load optional zmodem dllsn"
  700.               "  32 - use stdin for input instead of the consolen"
  701.               "  64 - use stdout for output instead of the consolen"
  702.               " 128 - do not terminate process in response to Session Logoff";
  703.             break;
  704. #endif /* OS2 */
  705.           case '0':                     /* In the middle */
  706.             opthlp[i] =
  707.               "100% transparent CONNECT mode for "in-the-middle" operation";
  708.             arghlp[i] = NULL;
  709.             break;
  710.           case '8':
  711.             opthlp[i] = "Connection is 8-bit clean";
  712.             arghlp[i] = NULL;
  713.             break;
  714.           case 'A':
  715.             opthlp[i] = "C-Kermit is to be started as an Internet service";
  716. #ifdef NT
  717.             arghlp[i] = "  socket handle of incoming connection";
  718. #else /* NT */
  719.             arghlp[i] = NULL;
  720. #endif /* NT */
  721.             break;
  722.           case 'B': opthlp[i] =
  723.             "C-Kermit is running in Batch (no controlling terminal)";
  724.             break;
  725. #ifndef NOSPL
  726.           case 'C':
  727.             opthlp[i] = "Interactive-mode Commands to be executed";
  728.             arghlp[i] = "Commands separated by commas, list in doublequotes";
  729.             break;
  730. #endif /* NOSPL */
  731.           case 'D':
  732.             opthlp[i] = "Delay before starting to send";
  733.             arghlp[i] = "Number of seconds";
  734.             break;
  735.           case 'E':
  736.             opthlp[i] = "Exit automatically when connection closes";
  737.             arghlp[i] = NULL;
  738.             break;
  739. #ifdef TCPSOCKET
  740.           case 'F':
  741.             opthlp[i] = "Make a TCP connection";
  742.             arghlp[i] = "Numeric file descriptor of open TCP connection";
  743.             break;
  744. #endif /* TCPSOCKET */
  745.           case 'G':
  746.             opthlp[i] = "GET from server, send to standard output";
  747.             arghlp[i] = "Remote file specification";
  748.             optact[i] = 1;
  749.             break;
  750.           case 'H':
  751.             opthlp[i] = "Suppress program startup Herald and greeting";
  752.             arghlp[i] = NULL;
  753.             break;
  754.           case 'I':
  755.             opthlp[i] = "Connection is relIable, streaming is allowed";
  756.             arghlp[i] = NULL;
  757.             break;
  758. #ifdef TCPSOCKET
  759.           case 'J':
  760.             opthlp[i] = "'Be like Telnet'";
  761.             arghlp[i] = "IP hostname/address optionally followed by socket";
  762.             break;
  763. #endif /* TCPSOCKET */
  764.           case 'L':
  765.             opthlp[i] = "Recursive directory descent for files in -s option";
  766.             arghlp[i] = NULL;
  767.             break;
  768.           case 'M':
  769.             opthlp[i] = "My user name (for use with Telnet, Rlogin, etc)";
  770.             arghlp[i] = "Username string";
  771.             break;
  772. #ifdef NETBIOS
  773.           case 'N':
  774.             opthlp[i] = "NETBIOS adapter number";
  775.             arghlp[i] = "Number";
  776.             break;
  777. #endif /* NETBIOS */
  778.           case 'O':                     /* Be a server for One command only */
  779.             opthlp[i] = "Be a server for One command only";
  780.             arghlp[i] = NULL;
  781.             optact[i] = 1;
  782.             break;
  783.           case 'P':
  784.             opthlp[i] = "Literal file (Path) names";
  785.             arghlp[i] = NULL;
  786.             break;
  787.           case 'Q':
  788.             opthlp[i] = "Quick (FAST) Kermit protocol settings";
  789.             arghlp[i] = NULL;
  790.             break;
  791.           case 'R':                     /* Remote-Only */
  792.             opthlp[i] = "Remote-only (makes IF REMOTE true)";
  793.             arghlp[i] = NULL;
  794.             break;
  795.           case 'S':                     /* "Stay" - enter interactive */
  796.             opthlp[i] = "Stay (enter command parser after action options)";
  797.             arghlp[i] = NULL;
  798.             break;
  799.           case 'T':                     /* Text file transfer mode */
  800.             opthlp[i] = "Transfer files in Text mode";
  801.             arghlp[i] = NULL;
  802.             break;
  803. #ifdef ANYX25
  804.           case 'U':                     /* X.25 call user data */
  805.             opthlp[i] = "X.25 call User data";
  806.             arghlp[i] = "Call-user-data string";
  807.             break;
  808. #endif /* ANYX25 */
  809.           case 'V':                     /* No automatic filetype switching */
  810.             opthlp[i] = "Disable automatic filetype switching";
  811.             arghlp[i] = NULL;
  812.             break;
  813. #ifdef COMMENT
  814. #ifdef OS2
  815.           case 'W':                     /* Win32 Window Handle */
  816.             opthlp[i] = "";
  817.             arghlp[i] = NULL;
  818.             break;
  819. #endif /* OS2 */
  820. #endif /* COMMENT */
  821. #ifdef ANYX25
  822.           case 'X':                     /* SET HOST to X.25 address */
  823.             opthlp[i] = "Make an X.25 connection";
  824.             arghlp[i] = "X.25 or X.121 address";
  825.             break;
  826. #endif /* ANYX25 */
  827.           case 'Y':                     /* No initialization file */
  828.             opthlp[i] = "Skip initialization file";
  829.             arghlp[i] = NULL;
  830.             break;
  831. #ifdef ANYX25
  832.           case 'Z':                     /* SET HOST to X.25 file descriptor */
  833.             opthlp[i] = "Make an X.25 connection";
  834.             arghlp[i] = "Numeric file descriptor of open X.25 connection";
  835.             break;
  836. #endif /* ANYX25 */
  837.           case 'a':                     /* as-name */
  838.             opthlp[i] = "As-name for file(s) in -s, -r, or -g";
  839.             arghlp[i] = "As-name string";
  840.             break;
  841.           case 'b':                     /* Set bits-per-second for serial */
  842.             opthlp[i] = "Speed for serial device";
  843.             arghlp[i] = "Numeric Bits per second";
  844.             break;
  845.           case 'c':                     /* Connect before */
  846.             optact[i] = 1;
  847.             opthlp[i] = "CONNECT before transferring files";
  848.             arghlp[i] = NULL;
  849.             break;
  850.           case 'd':                     /* DEBUG */
  851.             opthlp[i] = "Create debug.log file";
  852.             arghlp[i] = NULL;
  853.             break;
  854.           case 'e':                     /* Extended packet length */
  855.             opthlp[i] = "Receive packet length";
  856.             arghlp[i] = "Length in bytes";
  857.             break;
  858.           case 'f':                     /* finish */
  859.             optact[i] = 1;
  860.             opthlp[i] = "Send Finish command to server";
  861.             arghlp[i] = NULL;
  862.             break;
  863.           case 'g':                     /* get */
  864.             optact[i] = 1;
  865.             opthlp[i] = "GET file(s)";
  866.             arghlp[i] = "Remote file specification";
  867.             break;
  868.           case 'h':                     /* help */
  869.             optact[i] = 1;
  870.             opthlp[i] = "Print brief Help (usage) text";
  871.             arghlp[i] = NULL;
  872.             break;
  873.           case 'i':                     /* Treat files as binary */
  874.             opthlp[i] ="Transfer files in bInary mode";
  875.             arghlp[i] = NULL;
  876.             break;
  877. #ifdef TCPSOCKET
  878.           case 'j':                     /* SET HOST (TCP/IP socket) */
  879.             opthlp[i] = "Make a TCP connection";
  880.             arghlp[i] = "TCP host name/address and optional socket number";
  881.             break;
  882. #endif /* TCPSOCKET */
  883.           case 'k':                     /* receive to stdout */
  884.             optact[i] = 1;
  885.             opthlp[i] = "RECEIVE file(s) to standard output";
  886.             arghlp[i] = NULL;
  887.             break;
  888.           case 'l':                     /* SET LINE */
  889.             opthlp[i] = "Make connection on serial communications device";
  890.             arghlp[i] = "Device name string";
  891.             break;
  892.           case 'm':                     /* Modem type */
  893.             opthlp[i] = "Modem type for use with -l device";
  894.             arghlp[i] = "Modem type string as in SET MODEM TYPE command";
  895.             break;
  896.           case 'n':                     /* connect after */
  897.             optact[i] = 1;
  898.             opthlp[i] = "CONNECT after transferring files";
  899.             arghlp[i] = NULL;
  900.             break;
  901. #ifdef ANYX25
  902.           case 'o':                     /* X.25 closed user group */
  903.             opthlp[i] = "X.25 closed user group";
  904.             arghlp[i] = "User group string";
  905.             break;
  906. #endif /* ANYX25 */
  907.           case 'p':                     /* SET PARITY */
  908.             opthlp[i] = "Parity";
  909.             arghlp[i] = "One of the following: even, odd, mark, none, space";
  910.             break;
  911.           case 'q':                     /* Quiet */
  912.             opthlp[i] = "Quiet (suppress most messages)";
  913.             arghlp[i] = NULL;
  914.             break;
  915.           case 'r':                     /* receive */
  916.             optact[i] = 1;
  917.             opthlp[i] = "RECEIVE file(s)";
  918.             arghlp[i] = NULL;
  919.             break;
  920.           case 's':                     /* send */
  921.             optact[i] = 1;
  922.             opthlp[i] = "SEND file(s)";
  923.             arghlp[i] = "One or more file specifications";
  924.             break;
  925.           case 't':                     /* Line turnaround handshake */
  926.             opthlp[i] = "XON Turnaround character for half-duplex connections";
  927.             arghlp[i] = NULL;
  928.             break;
  929. #ifdef ANYX25
  930.           case 'u':                     /* X.25 reverse charge call */
  931.             opthlp[i] = "X.25 reverse charge call";
  932.             arghlp[i] = NULL;
  933.             break;
  934. #endif /* ANYX25 */
  935.           case 'v':                     /* Vindow size */
  936.             opthlp[i] = "Window size";
  937.             arghlp[i] = "Number, 1 to 32";
  938.             break;
  939.           case 'w':                     /* Writeover */
  940.             opthlp[i] = "Incoming files Write over existing files";
  941.             arghlp[i] = NULL;
  942.             break;
  943.           case 'x':                     /* Server */
  944.             optact[i] = 1;
  945.             opthlp[i] = "Be a Kermit SERVER";
  946.             arghlp[i] = NULL;
  947.             break;
  948.           case 'y':                     /* Alternate init-file name */
  949.             opthlp[i] = "Alternative initialization file";
  950.             arghlp[i] = "File specification";
  951.             break;
  952.           case 'z':                     /* Not background */
  953.             opthlp[i] = "Force foreground behavior";
  954.             arghlp[i] = NULL;
  955.             break;
  956.           default:
  957.             opthlp[i] = NULL;
  958.             arghlp[i] = NULL;
  959.         }
  960.     }
  961.     inixopthlp();
  962. }
  963. #endif /* NOHELP */
  964. int
  965. doxarg(s,pre) char ** s; int pre; {
  966. #ifdef CK_LOGIN
  967.     extern int ckxsyslog, ckxwtmp, ckxanon, ckxpriv, ckxperms;
  968.     extern char * anonfile, * userfile, * anonroot;
  969. #ifdef CKWTMP
  970.     extern char * wtmpfile;
  971. #endif /* CKWTMP */
  972. #endif /* CK_LOGIN */
  973.     extern int srvcdmsg;
  974.     extern char * cdmsgfile[], * cdmsgstr;
  975.     char tmpbuf[CKMAXPATH+1];
  976.     int i, x, y, z, havearg = 0;
  977.     char buf[XARGBUFL], c, * p;
  978.     if (nxargs < 1)
  979.       return(-1);
  980.     c = *(*s + 1);                      /* Hyphen or Plus sign */
  981.     p = *s + 2;
  982.     for (i = 0; *p && i < XARGBUFL; i++) {
  983.         buf[i] = *p++;
  984.         if (buf[i] == '=' || buf[i] == ':') {
  985.             havearg = 1;
  986.             buf[i] = NUL;
  987.             break;
  988.         } else if (buf[i] < ' ') {
  989.             buf[i] = NUL;
  990.             break;
  991.         }
  992.     }
  993.     if (i > XARGBUFL - 1)
  994.       return(-1);
  995.     buf[i] = NUL;
  996.     x = lookup(xargtab,buf,nxargs,&z);  /* Lookup the option keyword */
  997.     if (x < 0)                          /* On any kind of error */
  998.       return(-1);                       /* fail. */
  999.     /* Handle prescan versus post-initialization file */
  1000.     if (((xargtab[z].flgs & CM_PRE) || (c == '+')) && !pre)
  1001.       return(0);
  1002.     else if (pre && !(xargtab[z].flgs & CM_PRE) && (c != '+'))
  1003.       return(0);
  1004.     /* Ensure that argument is given if and only if required */
  1005.     p = havearg ? *s + i + 3 : NULL;
  1006.     if ((xargtab[z].flgs & CM_ARG) && !havearg)
  1007.       return(-1);
  1008.     else if ((!(xargtab[z].flgs & CM_ARG)) && havearg)
  1009.       return(-1);
  1010.     switch (x) {                        /* OK to process this option... */
  1011. #ifdef CKSYSLOG
  1012.       case XA_SYSL:                     /* IKS: Syslog level */
  1013.         y = 0;
  1014.         if (isdigit(*p)) {
  1015.             while (*p) {
  1016.                 if (*p < '0' || *p > '9')
  1017.                   return(-1);
  1018.                 y = y * 10 + (*p++ - '0');
  1019.             }
  1020.         } else {
  1021.             y = lookup(oktab,p,noktab,&z);
  1022.             if (y > 0) y = SYSLG_DF;    /* Yes = default logging level */
  1023.         }
  1024. #ifndef SYSLOGLEVEL
  1025.         /* If specified on cc command line, user can't change it. */
  1026.         if (!inserver)                  /* Don't allow voluminous syslogging */
  1027.           if (y > SYSLG_FA)             /* by ordinary users. */
  1028.             y = SYSLG_FA;
  1029. #endif /* SYSLOGLEVEL */
  1030.         if (y < 0) return(-1);
  1031. #ifdef DEBUG
  1032.         if (y >= SYSLG_DB)
  1033.           if (!deblog)
  1034.             deblog = debopn("debug.log",0);
  1035. #endif /* DEBUG */
  1036. #ifdef SYSLOGLEVEL
  1037.         /* If specified on cc command line, user can't change it. */
  1038.         y = SYSLOGLEVEL;
  1039. #endif /* SYSLOGLEVEL */
  1040.         ckxsyslog = y;
  1041.         /* printf("ckxsyslog=%dn",ckxsyslog); */
  1042.         break;
  1043. #endif /* CKSYSLOG */
  1044. #ifdef CK_LOGIN
  1045. #ifdef CKWTMP
  1046.       case XA_WTMP:                     /* IKS: wtmp log */
  1047.         y = lookup(oktab,p,noktab,&z);
  1048.         if (y < 0) return(-1);
  1049.         ckxwtmp = y;
  1050.         /* printf("ckxwtmp=%dn",ckxwtmp); */
  1051.         break;
  1052.       case XA_WTFI:                     /* IKS: wtmp logfile */
  1053.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1054.           p = tmpbuf;
  1055.         makestr(&wtmpfile,p);
  1056.         /* printf("wtmpfile=%sn",wtmpfile); */
  1057.         break;
  1058. #endif /* CKWTMP */
  1059.       case XA_ANON:                     /* IKS: Anonymous login allowed */
  1060.         y = lookup(oktab,p,noktab,&z);
  1061.         if (y < 0) return(-1);
  1062.         ckxanon = y;
  1063.         /* printf("ckxanon=%dn",ckxanon); */
  1064.         break;
  1065.       case XA_PRIV:                     /* IKS: Priv'd login allowed */
  1066.         y = lookup(oktab,p,noktab,&z);
  1067.         if (y < 0) return(-1);
  1068.         ckxpriv = y;
  1069.         /* printf("ckxpriv=%dn",ckxpriv); */
  1070.         break;
  1071.       case XA_PERM:                     /* IKS: Anonymous Upload Permissions */
  1072.         y = 0;
  1073.         while (*p) {
  1074.             if (*p < '0' || *p > '7')
  1075.               return(-1);
  1076.             y = y * 8 + (*p++ - '0');
  1077.         }
  1078.         ckxperms = y;
  1079.         /* printf("ckxperms=%04on",ckxperms); */
  1080.         break;
  1081.       case XA_ANFI:                     /* Anonymous init file */
  1082.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1083.           p = tmpbuf;
  1084.         makestr(&anonfile,p);
  1085.         /* printf("anonfile=%sn",anonfile); */
  1086.         break;
  1087.       case XA_USFI:                     /* IKS: Forbidden user file */
  1088.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1089.           p = tmpbuf;
  1090.         makestr(&userfile,p);
  1091.         /* printf("userfile=%sn",userfile); */
  1092.         break;
  1093.       case XA_ROOT:                     /* IKS: Anonymous root */
  1094.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1095.           p = tmpbuf;
  1096.         makestr(&anonroot,p);
  1097.         /* printf("anonroot=%sn",anonroot); */
  1098.         break;
  1099. #endif /* CK_LOGIN */
  1100. #ifndef NOICP
  1101.       case XA_CDFI:                     /* CD filename */
  1102. #ifdef COMMENT
  1103.         /* Do NOT expand this one! */
  1104.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1105.           p = tmpbuf;
  1106. #endif /* COMMENT */
  1107.         makelist(p,cdmsgfile,16);
  1108.         makestr(&cdmsgstr,p);
  1109.         /* printf("cdmsgstr=%sn",cdmsgstr); */
  1110.         break;
  1111. #endif /* NOICP */
  1112.       case XA_CDMS:                     /* CD messages */
  1113.         y = lookup(oktab,p,noktab,&z);
  1114.         if (y < 0) return(-1);
  1115.         srvcdmsg = y;
  1116.         /* printf("srvcdmsg=%dn",srvcdmsg); */
  1117.         break;
  1118. #ifndef NOXFER
  1119.       case XA_IKLG:                     /* Transfer log on/off */
  1120.         y = lookup(oktab,p,noktab,&z);
  1121.         if (y < 0) return(-1);
  1122.         xferlog = y;
  1123.         /* printf("xferlog=%dn",xferlog); */
  1124.         break;
  1125.       case XA_IKFI:                     /* Transfer log file */
  1126.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1127.           p = tmpbuf;
  1128.         makestr(&xferfile,p);
  1129.         xferlog = 1;
  1130.         /* printf("xferfile=%sn",xferfile); */
  1131.         break;
  1132.       case XA_BAFI:                     /* IKS: banner (greeting) file */
  1133.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1134.           p = tmpbuf;
  1135.         makestr(&bannerfile,p);
  1136.         /* printf("bannerfile=%sn",bannerfile); */
  1137.         break;
  1138. #endif /* NOXFER */
  1139. #ifndef NOHELP
  1140.       case XA_HELP:                     /* Help */
  1141.         /* printf("helpn"); */
  1142.         for (i = 0; i <= XA_MAX; i++)
  1143.           if (xopthlp[i])
  1144.             printf("%sn   %snn",xopthlp[i],xarghlp[i]);
  1145. #ifndef NOICP
  1146.         if (stayflg || what == W_COMMAND)
  1147.           break;
  1148.         else
  1149. #endif /* NOICP */
  1150.           doexit(GOOD_EXIT,-1);
  1151. #endif /* NOHELP */
  1152. #ifndef NOHELP
  1153.       case XA_HEFI:                     /* IKS: custom help file */
  1154.         if (zfnqfp(p,CKMAXPATH,tmpbuf))
  1155.           p = tmpbuf;
  1156.         makestr(&helpfile,p);
  1157.         /* printf("helpfile=%sn",helpfile); */
  1158.         break;
  1159. #endif /* NOHELP */
  1160. #ifdef CK_LOGIN
  1161.       case XA_TIMO:
  1162.         if (!rdigits(p))
  1163.           return(-1);
  1164.         logintimo = atoi(p);
  1165.         /* printf("logintimo=%dn",p); */
  1166.         break;
  1167. #endif /* CK_LOGIN */
  1168.       case XA_NOIN:                     /* No interrupts */
  1169. #ifndef NOICP
  1170.         cmdint = 0;
  1171. #endif /* NOICP */
  1172.         suspend = 0;
  1173.         break;
  1174. #ifdef IKSDB
  1175.       case XA_DBFI: {
  1176.           extern char * dbdir, * dbfile;
  1177.           extern int dbenabled;
  1178.           struct zfnfp * zz;
  1179.           if ((zz = zfnqfp(p,CKMAXPATH,tmpbuf))) {
  1180.               makestr(&dbdir,zz->fpath);
  1181.               makestr(&dbfile,(char *)tmpbuf);
  1182.           }
  1183.           dbenabled = 1;
  1184.           break;
  1185.       }
  1186.       case XA_DBAS: {
  1187.           extern int dbenabled;
  1188.           y = lookup(oktab,p,noktab,&z);
  1189.           if (y < 0) return(-1);
  1190.           dbenabled = y;
  1191.           break;
  1192.       }
  1193. #endif /* IKSDB */
  1194.       default:
  1195.         return(-1);
  1196.     }
  1197.     return(0);
  1198. }
  1199. #endif /* NOICP */
  1200. /*  D O A R G  --  Do a command-line argument.  */
  1201. int
  1202. #ifdef CK_ANSIC
  1203. doarg(char x)
  1204. #else
  1205. doarg(x) char x;
  1206. #endif /* CK_ANSIC */
  1207. /* doarg */ {
  1208.     int i, n, y, z, xx; long zz; char *xp;
  1209. #ifdef NETCONN
  1210. #define YYBUFLEN 256
  1211.     char tmpbuf[YYBUFLEN+1];            /* Local storage for network things */
  1212.     char line[YYBUFLEN+1];
  1213. #endif /* NETCONN */
  1214. #ifdef IKSD
  1215.     /* Internet Kermit Server set some way besides -A... */
  1216.     if (inserver)
  1217.       dofast();
  1218. #endif /* IKSD */
  1219.     xp = *xargv+1;                      /* Pointer for bundled args */
  1220.     debug(F111,"doarg entry",xp,xargc);
  1221.     while (x) {
  1222.         debug(F000,"doarg arg","",x);
  1223.         switch (x) {                    /* Big switch on arg */
  1224. #ifndef NOICP
  1225. case '-':                               /* Extended commands... */
  1226.     if (doxarg(xargv,0) < 0) {
  1227.         XFATAL("Extended option error");
  1228.     }                                   /* Full thru... */
  1229. case '+':                               /* Extended command for prescan() */
  1230.     return(0);
  1231. #else  /* NOICP */
  1232. case '-':
  1233. case '+':
  1234.     XFATAL("Extended options not configured");
  1235. #endif /* NOICP */
  1236. #ifndef NOSPL
  1237. case 'C': {                             /* Commands for parser */
  1238.     char * s;
  1239.     xargv++, xargc--;
  1240.     if ((xargc < 1) || (**xargv == '-')) {
  1241.         XFATAL("No commands given for -C");
  1242.     }
  1243.     s = *xargv;                         /* Get the argument (must be quoted) */
  1244.     if (!*s)                            /* If empty quotes */
  1245.       s = NULL;                         /* ignore this option */
  1246.     if (s) {
  1247.         makestr(&clcmds,s);             /* Make pokeable copy */
  1248.         s = clcmds;                     /* Change tabs to spaces */
  1249.         while (*s) {
  1250.             if (*s == 't') *s = ' ';
  1251.             s++;
  1252.         }
  1253.     }
  1254.     break;
  1255.   }
  1256. #endif /* NOSPL */
  1257. #ifndef NOXFER
  1258. case 'D':                               /* Delay */
  1259.     if (*(xp+1)) {
  1260.         XFATAL("invalid argument bundling");
  1261.     }
  1262.     xargv++, xargc--;
  1263.     if ((xargc < 1) || (**xargv == '-')) {
  1264.         XFATAL("missing delay value");
  1265.     }
  1266.     z = atoi(*xargv);                   /* Convert to number */
  1267.     if (z > -1)                         /* If in range */
  1268.       ckdelay = z;                      /* set it */
  1269.     else {
  1270.         XFATAL("bad delay value");
  1271.     }
  1272.     break;
  1273. #endif /* NOXFER */
  1274. case 'E':                               /* Exit on close */
  1275. #ifdef NETCONN
  1276.     tn_exit = 1;
  1277. #endif /* NETCONN */
  1278.     exitonclose = 1;
  1279.     break;
  1280. #ifndef NOICP
  1281. case 'S':                               /* "Stay" - enter interactive */
  1282.     stayflg = 1;                        /* command parser after executing */
  1283.     xfinish = 0;
  1284.     break;                              /* command-line actions. */
  1285. #endif /* NOICP */
  1286. case 'T':                               /* File transfer mode = text */
  1287.     binary = XYFT_T;
  1288.     xfermode = XMODE_M; /* Transfer mode manual */
  1289. #ifdef PATTERNS
  1290.     patterns = 0;
  1291. #endif /* PATTERNS */
  1292.     break;
  1293. case '7':
  1294.     break;
  1295. case 'A': { /* Internet server */
  1296.     /* Already done in prescan() */
  1297.     /* but implies 'x' &&  'Q'   */
  1298. #ifdef NT
  1299.     char * p;
  1300.     if (*(xp+1)) {
  1301.         XFATAL("invalid argument bundling");
  1302.     }
  1303.     /* Support for Pragma Systems Telnet/Terminal Servers */
  1304.     p = getenv("PRAGMASYS_INETD_SOCK");
  1305.     if (!(p && atoi(p) != 0)) {
  1306.         xargv++, xargc--;
  1307.         if (xargc < 1 || **xargv == '-') {
  1308.             XFATAL("missing socket handle");
  1309. }
  1310.     }
  1311. #endif /* NT */
  1312. #ifdef NOICP                            /* If no Interactive Command Parser */
  1313.     action = 'x';                       /* -A implies -x. */
  1314. #endif /* NOICP */
  1315. #ifndef NOXFER
  1316.     dofast();
  1317. #endif /* NOXFER */
  1318.     break;
  1319. }
  1320. #ifndef NOXFER
  1321. case 'Q':                               /* Quick (i.e. FAST) */
  1322.     dofast();
  1323.     break;
  1324. #endif /* NOXFER */
  1325. case 'R':                               /* Remote-Only */
  1326.     break;                              /* This is handled in prescan(). */
  1327. #ifndef NOSERVER
  1328. case 'x':                               /* server */
  1329. case 'O':                               /* (for One command only) */
  1330.     if (action) {
  1331.         XFATAL("conflicting actions");
  1332.     }
  1333.     if (x == 'O') justone = 1;
  1334.     xfinish = 1;
  1335.     action = 'x';
  1336.     break;
  1337. #endif /* NOSERVER */
  1338. #ifndef NOXFER
  1339. case 'f':                               /* finish */
  1340.     if (action) {
  1341.         XFATAL("conflicting actions");
  1342.     }
  1343.     action = setgen('F',"","","");
  1344.     break;
  1345. #endif /* NOXFER */
  1346. case 'r': {                             /* receive */
  1347.     if (action) {
  1348.         XFATAL("conflicting actions");
  1349.     }
  1350.     action = 'v';
  1351.     break;
  1352.   }
  1353. #ifndef NOXFER
  1354. case 'k':                               /* receive to stdout */
  1355.     if (action) {
  1356.         XFATAL("conflicting actions");
  1357.     }
  1358.     stdouf = 1;
  1359.     action = 'v';
  1360.     break;
  1361. case 's':                               /* send */
  1362.     if (action) {
  1363.         XFATAL("conflicting actions");
  1364.     }
  1365.     if (*(xp+1)) {
  1366.         XFATAL("invalid argument bundling after -s");
  1367.     }
  1368.     nfils = 0;                          /* Initialize file counter */
  1369.     z = 0;                              /* Flag for stdin */
  1370.     cmlist = xargv + 1;                 /* Remember this pointer */
  1371.     while (--xargc > 0) {               /* Traverse the list */
  1372.         xargv++;
  1373. #ifdef PIPESEND
  1374.         if (usepipes && protocol == PROTO_K && **xargv == '!') {
  1375.             cmarg = *xargv;
  1376.             cmarg++;
  1377.             debug(F110,"doarg pipesend",cmarg,0);
  1378.             nfils = -1;
  1379.             z = 1;
  1380.             pipesend = 1;
  1381.         } else
  1382. #endif /* PIPESEND */
  1383.         if (**xargv == '-') {           /* Check for sending stdin */
  1384.             if (strcmp(*xargv,"-") != 0) /* Watch out for next option. */
  1385.               break;
  1386.             z++;                        /* "-" alone means send from stdin. */
  1387. #ifdef RECURSIVE
  1388.         } else if (!strcmp(*xargv,".")) {
  1389.             nfils++;
  1390.             recursive = 1;
  1391. #endif /* RECURSIVE */
  1392.         } else if (zchki(*xargv) > -1) { /* Check if file exists */
  1393.             nfils++;                    /* Bump file counter */
  1394.         } else if (iswild(*xargv) && nzxpand(*xargv,0) > 0) {
  1395.             /* or contains wildcard characters matching real files */
  1396.             nfils++;
  1397.         }
  1398.     }
  1399.     xargc++, xargv--;                   /* Adjust argv/argc */
  1400.     if (nfils < 1 && z == 0) {
  1401. #ifdef VMS
  1402.         XFATAL("%CKERMIT-E-SEARCHFAIL, no files for -s");
  1403. #else
  1404.         XFATAL("No files for -s");
  1405. #endif /* VMS */
  1406.     }
  1407.     if (z > 1) {
  1408.         XFATAL("-s: too many -'s");
  1409.     }
  1410.     if (z == 1 && nfils > 0) {
  1411.         XFATAL("invalid mixture of filenames and '-' in -s");
  1412.     }
  1413.     debug(F101,"doarg s nfils","",nfils);
  1414.     debug(F101,"doarg s z","",z);
  1415.     if (nfils == 0) {
  1416.         if (is_a_tty(0)) {              /* (used to be is_a_tty(1) - why?) */
  1417.             XFATAL("sending from terminal not allowed");
  1418.         } else stdinf = 1;
  1419.     }
  1420.     debug(F101,"doarg s stdinf","",stdinf);
  1421.     debug(F111,"doarg",*xargv,nfils);
  1422.     action = 's';
  1423.     break;
  1424. case 'g':                               /* get */
  1425. case 'G':                               /* get to stdout */
  1426.     if (action) {
  1427.         XFATAL("conflicting actions");
  1428.     }
  1429.     if (*(xp+1)) {
  1430.         XFATAL("invalid argument bundling after -g");
  1431.     }
  1432.     xargv++, xargc--;
  1433.     if ((xargc == 0) || (**xargv == '-')) {
  1434.         XFATAL("missing filename for -g");
  1435.     }
  1436.     if (x == 'G') stdouf = 1;
  1437.     cmarg = *xargv;
  1438.     action = 'r';
  1439.     break;
  1440. #endif /* NOXFER */
  1441. #ifndef NOLOCAL
  1442. case 'c':                               /* connect before */
  1443.     cflg = 1;
  1444.     break;
  1445. case 'n':                               /* connect after */
  1446.     cnflg = 1;
  1447.     break;
  1448. #endif /* NOLOCAL */
  1449. case 'h':                               /* help */
  1450.     usage();
  1451. #ifndef NOICP
  1452.     if (stayflg || what == W_COMMAND)
  1453.       break;
  1454.     else
  1455. #endif /* NOICP */
  1456.       doexit(GOOD_EXIT,-1);
  1457. #ifndef NOXFER
  1458. case 'a':                               /* "as" */
  1459.     if (*(xp+1)) {
  1460.         XFATAL("invalid argument bundling after -a");
  1461.     }
  1462.     xargv++, xargc--;
  1463.     if ((xargc < 1) || (**xargv == '-')) {
  1464.         XFATAL("missing name in -a");
  1465.     }
  1466.     cmarg2 = *xargv;
  1467.     debug(F111,"doarg a",cmarg2,xargc);
  1468.     break;
  1469. #endif /* NOXFER */
  1470. #ifndef NOICP
  1471. case 'Y':                               /* No initialization file */
  1472.     noinit = 1;
  1473.     break;
  1474. case 'y':                               /* Alternate init-file name */
  1475.     if (*(xp+1)) {
  1476.         XFATAL("invalid argument bundling after -y");
  1477.     }
  1478.     xargv++, xargc--;
  1479.     if (xargc < 1) {
  1480.         XFATAL("missing filename in -y");
  1481.     }
  1482.     /* strcpy(kermrc,*xargv); ...this was already done in prescan()... */
  1483.     break;
  1484. #endif /* NOICP */
  1485. #ifndef NOXFER
  1486. case 'I':                               /* Assume we have an "Internet" */
  1487.     reliable = 1;                       /* or other reliable connection */
  1488.     xreliable = 1;
  1489.     setreliable = 1;
  1490.     /* I'm not so sure about this -- what about VMS? (next comment) */
  1491.     clearrq = 1;                        /* therefore the channel is clear */
  1492. #ifndef VMS
  1493. /*
  1494.   Since this can trigger full control-character unprefixing, we need to
  1495.   ensure that our terminal or pty driver is not doing Xon/Xoff; otherwise
  1496.   we can become deadlocked the first time we receive a file that contains
  1497.   Xoff.
  1498. */
  1499.     flow = FLO_NONE;
  1500. #endif /* VMS */
  1501.     break;
  1502. #endif /* NOXFER */
  1503. #ifndef NOLOCAL
  1504. case 'l':                               /* SET LINE */
  1505. #ifdef NETCONN
  1506. #ifdef ANYX25
  1507. case 'X':                               /* SET HOST to X.25 address */
  1508. #ifdef SUNX25
  1509. case 'Z':                               /* SET HOST to X.25 file descriptor */
  1510. #endif /* SUNX25 */
  1511. #endif /* ANYX25 */
  1512. #ifdef TCPSOCKET
  1513. case 'J':
  1514. case 'j':                               /* SET HOST (TCP/IP socket) */
  1515. #endif /* TCPSOCKET */
  1516. #endif /* NETCONN */
  1517. #ifndef NOXFER
  1518.     if (x == 'j' || x == 'J' || x == 'X' || x == 'Z') {
  1519.         reliable = 1;                   /* or other reliable connection */
  1520.         xreliable = 1;
  1521.         setreliable = 1;
  1522.     }
  1523. #endif /* NOXFER */
  1524.     network = 0;
  1525.     if (*(xp+1)) {
  1526.         XFATAL("invalid argument bundling after -l or -j");
  1527.     }
  1528.     xargv++, xargc--;
  1529.     if ((xargc < 1) || (**xargv == '-')) {
  1530.         XFATAL("communication line device name missing");
  1531.     }
  1532. #ifdef NETCONN
  1533.     if (x == 'J') {
  1534.         cflg    = 1;                    /* Connect */
  1535.         stayflg = 1;                    /* Stay */
  1536.         tn_exit = 1;                    /* Telnet-like exit condition */
  1537.         exitonclose = 1;
  1538.     }
  1539. #endif /* NETCONN */
  1540.     ckstrncpy(ttname,*xargv,TTNAMLEN+1);
  1541.     local = (strcmp(ttname,CTTNAM) != 0);
  1542.     if (local && strcmp(ttname,"0") == 0)
  1543.       local = 0;
  1544. /*
  1545.   NOTE: We really do not need to call ttopen here, since it should be called
  1546.   again later, automatically, when we first try to condition the device via
  1547.   ttpkt or ttvt.  Calling ttopen here has the bad side effect of making the
  1548.   order of the -b and -l options significant, but order of command-line options
  1549.   should not matter.  However, the network cases immediately below complicate
  1550.   matters a bit, so we'll settle this in a future edit.
  1551. */
  1552.     if (x == 'l') {
  1553.         if (ttopen(ttname,&local,mdmtyp,0) < 0) {
  1554.             XFATAL("can't open device");
  1555.         }
  1556. #ifdef CKLOGDIAL
  1557.         dologline();
  1558. #endif /* CKLOGDIAL */
  1559.         debug(F101,"doarg speed","",speed);
  1560.         cxtype = (mdmtyp > 0) ? CXT_MODEM : CXT_DIRECT;
  1561.         speed = ttgspd();               /* Get the speed. */
  1562.         setflow();                      /* Do something about flow control. */
  1563. #ifndef NOSPL
  1564.         if (local) {
  1565.             if (nmac) {                 /* Any macros defined? */
  1566.                 int k;                  /* Yes */
  1567.                 k = mlook(mactab,"on_open",nmac);       /* Look this up */
  1568.                 if (k >= 0) {                   /* If found, */
  1569.                     if (dodo(k,ttname,0) > -1)  /* set it up, */
  1570.                       parser(1);                        /* and execute it */
  1571.                 }
  1572.             }
  1573.         }
  1574. #endif /* NOSPL */
  1575. #ifdef NETCONN
  1576.     } else {
  1577.         if (x == 'j' || x == 'J') {     /* IP network host name */
  1578.             char * s = line;
  1579.             char * service = tmpbuf;
  1580.             if (xargc > 0) {            /* Check if it's followed by */
  1581.                 /* A service name or number */
  1582.                 if (*(xargv+1) && *(*(xargv+1)) != '-') {
  1583.                     xargv++, xargc--;
  1584.                     strcat(ttname,":");
  1585.                     strcat(ttname,*xargv);
  1586.                 }
  1587.             }
  1588.             nettype = NET_TCPB;
  1589.             mdmtyp = -nettype;          /* Perhaps already set in init file */
  1590.             telnetfd = 1;               /* Or maybe an open file descriptor */
  1591.             ckstrncpy(line, ttname, YYBUFLEN); /* Working copy of the name */
  1592.             for (s = line; *s != '' && *s != ':'; s++); /* and service */
  1593.             if (*s) {
  1594.                 *s++ = '';
  1595.                 ckstrncpy(service, s, YYBUFLEN);
  1596.             } else *service = '';
  1597.             s = line;
  1598. #ifndef NODIAL
  1599. #ifndef NOICP
  1600.             /* Look up in network directory */
  1601.             x = 0;
  1602.             if (*s == '=') {            /* If number starts with = sign */
  1603.                 s++;                    /* strip it */
  1604.                 while (*s == SP)        /* and also any leading spaces */
  1605.                   s++;
  1606.                 ckstrncpy(line,s,YYBUFLEN); /* Do this again. */
  1607.                 nhcount = 0;
  1608.             } else if (!isdigit(line[0])) {
  1609. /*
  1610.   nnetdir will be greater than 0 if the init file has been processed and it
  1611.   contained a SET NETWORK DIRECTORY command.
  1612. */
  1613.                 xx = 0;                 /* Initialize this */
  1614.                 if (nnetdir > 0)        /* If there is a directory... */
  1615.                   xx = lunet(line);     /* Look up the name */
  1616.                 else                    /* If no directory */
  1617.                   nhcount = 0;          /* we didn't find anything there */
  1618.                 if (xx < 0) {           /* Lookup error: */
  1619.                     sprintf(tmpbuf,
  1620.                             "?Fatal network directory lookup error - %sn",
  1621.                             line
  1622.                             );
  1623.                     XFATAL(tmpbuf);
  1624.                 }
  1625.             }
  1626. #endif /* NOICP */
  1627. #endif /* NODIAL */
  1628.             /* Add service to line specification for ttopen() */
  1629.             if (*service) {             /* There is a service specified */
  1630.                 strcat(line, ":");
  1631.                 strcat(line, service);
  1632.                 ttnproto = NP_DEFAULT;
  1633.             } else {
  1634.                 strcat(line, ":telnet");
  1635.                 ttnproto = NP_TELNET;
  1636.             }
  1637. #ifndef NOICP
  1638. #ifndef NODIAL
  1639.             if ((nhcount > 1) && !quiet && !backgrd) {
  1640.                 printf("%d entr%s found for "%s"%sn",
  1641.                        nhcount,
  1642.                        (nhcount == 1) ? "y" : "ies",
  1643.                        s,
  1644.                        (nhcount > 0) ? ":" : "."
  1645.                        );
  1646.                 for (i = 0; i < nhcount; i++)
  1647.                   printf("%3d. %s %-12s => %sn",
  1648.                          i+1, n_name, nh_p2[i], nh_p[i]
  1649.                          );
  1650.             }
  1651.             if (nhcount == 0)
  1652.               n = 1;
  1653.             else
  1654.               n = nhcount;
  1655. #else
  1656.             n = 1;
  1657.             nhcount = 0;
  1658. #endif /* NODIAL */
  1659.             for (i = 0; i < n; i++) {
  1660. #ifndef NODIAL
  1661.                 if (nhcount >= 1) {
  1662.                     /* Copy the current entry to line */
  1663.                     ckstrncpy(line,nh_p[i],LINBUFSIZ);
  1664.                     /* Check to see if the network entry contains a service */
  1665.                     for (s = line ; (*s != '') && (*s != ':'); s++)
  1666.                       ;
  1667.                     /* If directory does not have a service ... */
  1668.                     if (!*s && *service) { /* and the user specified one */
  1669.                         strcat(line, ":");
  1670.                         strcat(line, service);
  1671.                     }
  1672.                     if (lookup(netcmd,nh_p2[i],nnets,&z) > -1) {
  1673.                         mdmtyp = 0 - netcmd[z].kwval;
  1674.                     } else {
  1675.                         printf("Error - network type "%s" not supportedn",
  1676.                                nh_p2[i]
  1677.                                );
  1678.                         continue;
  1679.                     }
  1680.                 }
  1681. #endif /* NODIAL */
  1682.             }
  1683. #endif /* NOICP */
  1684.             ckstrncpy(ttname, line,TTNAMLEN+1);
  1685.             cxtype = CXT_TCPIP;         /* Set connection type */
  1686.             setflow();                  /* Set appropriate flow control. */
  1687. #ifdef SUNX25
  1688.         } else if (x == 'X') {          /* X.25 address */
  1689.             nettype = NET_SX25;
  1690.             mdmtyp = -nettype;
  1691.         } else if (x == 'Z') {          /* Open X.25 file descriptor */
  1692.             nettype = NET_SX25;
  1693.             mdmtyp = -nettype;
  1694.             x25fd = 1;
  1695. #endif /* SUNX25 */
  1696. #ifdef STRATUSX25
  1697.         } else if (x == 'X') {          /* X.25 address */
  1698.             nettype = NET_VX25;
  1699.             mdmtyp = -nettype;
  1700. #endif /* STRATUSX25 */
  1701. #ifdef IBMX25
  1702.         } else if (x == 'X') {          /* X.25 address */
  1703.             nettype = NET_IX25;
  1704.             mdmtyp = -nettype;
  1705. #endif /* IBMX25 */
  1706. #ifdef HPX25
  1707.         } else if (x == 'X') {          /* X.25 address */
  1708.             nettype = NET_HX25;
  1709.             mdmtyp = -nettype;
  1710. #endif /* HPX25 */
  1711.         }
  1712.         if (ttopen(ttname,&local,mdmtyp,0) < 0) {
  1713.             XFATAL("can't open host connection");
  1714.         }
  1715.         network = 1;
  1716. #ifdef CKLOGDIAL
  1717.         dolognet();
  1718. #endif /* CKLOGDIAL */
  1719.         cxtype = CXT_X25;               /* Set connection type */
  1720.         setflow();                      /* Set appropriate flow control. */
  1721. #ifndef NOSPL
  1722.         if (local) {
  1723.             if (nmac) {                 /* Any macros defined? */
  1724.                 int k;                  /* Yes */
  1725.                 k = mlook(mactab,"on_open",nmac); /* Look this up */
  1726.                 if (k >= 0) {           /* If found, */
  1727.                     if (dodo(k,ttname,0) > -1) /* set it up, */
  1728.                       parser(1);        /* and execute it */
  1729.                 }
  1730.             }
  1731.         }
  1732. #endif /* NOSPL */
  1733. #endif /* NETCONN */
  1734.     }
  1735.     /* add more here -- decnet, etc... */
  1736.     haveline = 1;
  1737.     break;
  1738. #ifdef ANYX25
  1739. case 'U':                               /* X.25 call user data */
  1740.     if (*(xp+1)) {
  1741.         XFATAL("invalid argument bundling");
  1742.     }
  1743.     xargv++, xargc--;
  1744.     if ((xargc < 1) || (**xargv == '-')) {
  1745.         XFATAL("missing call user data string");
  1746.     }
  1747.     ckstrncpy(udata,*xargv,MAXCUDATA);
  1748.     if ((int)strlen(udata) <= MAXCUDATA) {
  1749.         cudata = 1;
  1750.     } else {
  1751.         XFATAL("Invalid call user data");
  1752.     }
  1753.     break;
  1754. case 'o':                               /* X.25 closed user group */
  1755.     if (*(xp+1)) {
  1756.         XFATAL("invalid argument bundling");
  1757.     }
  1758.     xargv++, xargc--;
  1759.     if ((xargc < 1) || (**xargv == '-')) {
  1760.         XFATAL("missing closed user group index");
  1761.     }
  1762.     z = atoi(*xargv);                   /* Convert to number */
  1763.     if (z >= 0 && z <= 99) {
  1764.         closgr = z;
  1765.     } else {
  1766.         XFATAL("Invalid closed user group index");
  1767.     }
  1768.     break;
  1769. case 'u':                               /* X.25 reverse charge call */
  1770.     revcall = 1;
  1771.     break;
  1772. #endif /* ANYX25 */
  1773. #endif /* NOLOCAL */
  1774. case 'b':                               /* Bits-per-second for serial device */
  1775.     if (*(xp+1)) {
  1776.         XFATAL("invalid argument bundling");
  1777.     }
  1778.     xargv++, xargc--;
  1779.     if ((xargc < 1) || (**xargv == '-')) {
  1780.         XFATAL("missing bps");
  1781.     }
  1782.     zz = atol(*xargv);                  /* Convert to long int */
  1783.     i = zz / 10L;
  1784. #ifndef NOLOCAL
  1785.     if (ttsspd(i) > -1)                 /* Check and set it */
  1786. #endif /* NOLOCAL */
  1787.       speed = ttgspd();                 /* and read it back. */
  1788. #ifndef NOLOCAL
  1789.     else {
  1790.         XFATAL("unsupported transmission rate");
  1791.     }
  1792. #endif /* NOLOCAL */
  1793.     break;
  1794. #ifndef NODIAL
  1795. #ifndef NOICP
  1796. case 'm':                               /* Modem type */
  1797.     if (*(xp+1)) {
  1798.         XFATAL("invalid argument bundling after -m");
  1799.     }
  1800.     xargv++, xargc--;
  1801.     if ((xargc < 1) || (**xargv == '-')) {
  1802.         XFATAL("modem type missing");
  1803.     }
  1804.     y = lookup(mdmtab,*xargv,nmdm,&z);
  1805.     if (y < 0) {
  1806.         XFATAL("unknown modem type");
  1807.     }
  1808.     usermdm = 0;
  1809.     usermdm = (y == dialudt) ? x : 0;
  1810.     initmdm(y);
  1811.     break;
  1812. #endif /* NOICP */
  1813. #endif /* NODIAL */
  1814. #ifndef NOXFER
  1815. case 'e':                               /* Extended packet length */
  1816.     if (*(xp+1)) {
  1817.         XFATAL("invalid argument bundling after -e");
  1818.     }
  1819.     xargv++, xargc--;
  1820.     if ((xargc < 1) || (**xargv == '-')) {
  1821.         XFATAL("missing length");
  1822.     }
  1823.     z = atoi(*xargv);                   /* Convert to number */
  1824.     if (z > 10 && z <= maxrps) {
  1825.         rpsiz = urpsiz = z;
  1826.         if (z > 94) rpsiz = 94;         /* Fallback if other Kermit can't */
  1827.     } else {
  1828.         XFATAL("Unsupported packet length");
  1829.     }
  1830.     break;
  1831. case 'v':                               /* Vindow size */
  1832.     if (*(xp+1)) {
  1833.         XFATAL("invalid argument bundling");
  1834.     }
  1835.     xargv++, xargc--;
  1836.     if ((xargc < 1) || (**xargv == '-')) {
  1837.         XFATAL("missing or bad window size");
  1838.     }
  1839.     z = atoi(*xargv);                   /* Convert to number */
  1840.     if (z < 32) {                       /* If in range */
  1841.         wslotr = z;                     /* set it */
  1842.         if (z > 1) swcapr = 1;          /* Set capas bit if windowing */
  1843.     } else {
  1844.         XFATAL("Unsupported packet length");
  1845.     }
  1846.     break;
  1847. #endif /* NOXFER */
  1848. case 'i':                               /* Treat files as binary */
  1849.     binary = XYFT_B;
  1850.     xfermode = XMODE_M; /* Transfer mode manual */
  1851. #ifdef PATTERNS
  1852.     patterns = 0;
  1853. #endif /* PATTERNS */
  1854.     break;
  1855. #ifndef NOXFER
  1856. case 'w':                               /* Writeover */
  1857.     ckwarn = 0;
  1858.     fncact = XYFX_X;
  1859.     break;
  1860. #endif /* NOXFER */
  1861. case 'q':                               /* Quiet */
  1862.     quiet = 1;
  1863.     break;
  1864. #ifdef DEBUG
  1865. case 'd':                               /* DEBUG */
  1866.     break;                              /* Handled in prescan() */
  1867. #endif /* DEBUG */
  1868. case '0': {                             /* In the middle */
  1869.     extern int tt_escape, lscapr;
  1870.     tt_escape = 0;                      /* No escape character */
  1871.     flow = 0;                           /* No Xon/Xoff (what about hwfc?) */
  1872. #ifndef NOXFER
  1873.     lscapr = 0;                         /* No locking shifts */
  1874. #endif /* NOXFER */
  1875. #ifdef CK_APC
  1876.     {
  1877.         extern int apcstatus;           /* No APCs */
  1878.         apcstatus = APC_OFF;
  1879.     }
  1880. #endif /* CK_APC */
  1881. #ifdef CK_AUTODL
  1882.     {                                   /* No autodownload */
  1883.         extern int autodl;
  1884.         autodl = 0;
  1885.     }
  1886. #endif /* CK_AUTODL */
  1887. #ifndef NOCSETS
  1888.     {
  1889.         extern int tcsr, tcsl;          /* No character-set translation */
  1890.         tcsr = 0;
  1891.         tcsl = tcsr;                    /* Make these equal */
  1892.     }
  1893. #endif /* NOCSETS */
  1894. #ifdef TNCODE
  1895.     TELOPT_DEF_C_U_MODE(TELOPT_KERMIT) = TN_NG_RF;
  1896.     TELOPT_DEF_C_ME_MODE(TELOPT_KERMIT) = TN_NG_RF;
  1897.     TELOPT_DEF_S_U_MODE(TELOPT_KERMIT) = TN_NG_RF;
  1898.     TELOPT_DEF_S_ME_MODE(TELOPT_KERMIT) = TN_NG_RF;
  1899. #endif /* TNCODE */
  1900. }
  1901. /* Fall thru... */
  1902. case '8':                               /* 8-bit clean */
  1903.     parity = 0;
  1904.     cmdmsk = 0xff;
  1905.     cmask = 0xff;
  1906.     break;
  1907. case 'V': {
  1908.     extern int xfermode;
  1909. #ifdef PATTERNS
  1910.     extern int patterns;
  1911.     patterns = 0;                       /* No patterns */
  1912. #endif /* PATTERNS */
  1913.     xfermode = XMODE_M;                 /* Manual transfer mode */
  1914.     break;
  1915. }
  1916. case 'p':                               /* SET PARITY */
  1917.     if (*(xp+1)) {
  1918.         XFATAL("invalid argument bundling");
  1919.     }
  1920.     xargv++, xargc--;
  1921.     if ((xargc < 1) || (**xargv == '-')) {
  1922.         XFATAL("missing parity");
  1923.     }
  1924.     switch(x = **xargv) {
  1925.         case 'e':
  1926.         case 'o':
  1927.         case 'm':
  1928.         case 's': parity = x; break;
  1929.         case 'n': parity = 0; break;
  1930.         default:  { XFATAL("invalid parity"); }
  1931.         }
  1932.     break;
  1933. case 't':                               /* Line turnaround handshake */
  1934.     turn = 1;
  1935.     turnch = XON;                       /* XON is turnaround character */
  1936.     duplex = 1;                         /* Half duplex */
  1937.     flow = 0;                           /* No flow control */
  1938.     break;
  1939. case 'B':
  1940.     bgset = 1;                          /* Force background (batch) */
  1941.     backgrd = 1;
  1942.     break;
  1943. case 'z':                               /* Force foreground */
  1944.     bgset = 0;
  1945.     backgrd = 0;
  1946.     break;
  1947. #ifndef NOXFER
  1948. #ifdef RECURSIVE
  1949. case 'L':
  1950.     recursive = 2;
  1951.     fnspath = PATH_REL;
  1952.     break;
  1953. #endif /* RECURSIVE */
  1954. #endif /* NOXFER */
  1955. #ifndef NOSPL
  1956. case 'M':                               /* My User Name */
  1957.     /* Already done in prescan() */
  1958.     if (*(xp+1)) {
  1959.         XFATAL("invalid argument bundling");
  1960.     }
  1961.     xargv++, xargc--;
  1962.     if ((xargc < 1) || (**xargv == '-')) {
  1963.         XFATAL("missing username");
  1964.     }
  1965. #ifdef COMMENT
  1966.     if ((int)strlen(*xargv) > 63) {
  1967.         XFATAL("username too long");
  1968.     }
  1969. #ifdef IKSD
  1970.     if (!inserver)
  1971. #endif /* IKSD */
  1972.       ckstrncpy(uidbuf,tmpusrid,UIDBUFLEN);
  1973. #endif /* COMMENT */
  1974.     break;
  1975. #endif /* NOSPL */
  1976. #ifdef CK_NETBIOS
  1977. case 'N':                              /* NetBios Adapter Number follows */
  1978.     if (*(xp+1)) {
  1979.         XFATAL("invalid argument bundling after -N");
  1980.     }
  1981.     xargv++, xargc--;
  1982.     if ((xargc < 1) || (**xargv == '-')) {
  1983.         XFATAL("missing NetBios Adapter number");
  1984.     }
  1985.     if ((strlen(*xargv) != 1) ||
  1986.         (*xargv)[0] != 'X' &&
  1987.         (atoi(*xargv) < 0) &&
  1988.          (atoi(*xargv) > 9)) {
  1989.         XFATAL("Invalid NetBios Adapter - Adapters 0 to 9 are valid");
  1990.     }
  1991.     break;
  1992. #endif /* CK_NETBIOS */
  1993. #ifdef NETCONN
  1994. case 'F':
  1995.     network = 1;
  1996.     if (*(xp+1)) {
  1997.         XFATAL("invalid argument bundling after -F");
  1998.     }
  1999.     xargv++, xargc--;
  2000.     if ((xargc < 1) || (**xargv == '-')) {
  2001.         XFATAL("network file descriptor missing");
  2002.     }
  2003.     ckstrncpy(ttname,*xargv,TTNAMLEN+1);
  2004.     nettype = NET_TCPB;
  2005.     mdmtyp = -nettype;
  2006.     telnetfd = 1;
  2007.     local = 1;
  2008.     break;
  2009. #endif /* NETCONN */
  2010. #ifdef COMMENT
  2011. #ifdef OS2PM
  2012. case 'P':                               /* OS/2 Presentation Manager */
  2013.     if (*(xp+1)) {
  2014.         XFATAL("invalid argument bundling after -P");
  2015.     }
  2016.     xargv++, xargc--;
  2017.     if ((xargc < 1) || (**xargv == '-')) {
  2018.         XFATAL("pipe data missing");
  2019.     }
  2020.     pipedata = *xargv;
  2021.     break;
  2022. #endif /* OS2PM */
  2023. #else
  2024. case 'P': /* Filenames literal */
  2025.     fncnv  = XYFN_L;
  2026.     f_save = XYFN_L;
  2027.     break;
  2028. #endif /* COMMENT */
  2029. #ifndef NOICP
  2030. case 'H':
  2031.     noherald = 1;
  2032.     break;
  2033. #endif /* NOICP */
  2034. #ifdef OS2
  2035. case 'W':
  2036.     if (*(xp+1)) {
  2037.         XFATAL("invalid argument bundling after -W");
  2038.     }
  2039.     xargv++, xargc--;
  2040.     if ((xargc < 1)) { /* could be negative */
  2041.         XFATAL("Window handle missing");
  2042.     }
  2043.     xargv++, xargc--;
  2044.     if ((xargc < 1) || (**xargv == '-')) {
  2045.         XFATAL("Kermit Instance missing");
  2046.     }
  2047.     /* Action done in prescan */
  2048.     break;
  2049. case '#':                               /* K95 stdio threads */
  2050.     xargv++, xargc--;                   /* Skip past argument */
  2051.     break;                              /* Action done in prescan */
  2052. #endif /* OS2 */
  2053. default:
  2054.     fatal2(*xargv,
  2055. #ifdef NT
  2056.                    "invalid command-line option, type "k95 -h" for help"
  2057. #else
  2058. #ifdef OS2
  2059.                    "invalid command-line option, type "k2 -h" for help"
  2060. #else
  2061.                    "invalid command-line option, type "kermit -h" for help"
  2062. #endif /* OS2 */
  2063. #endif /* NT */
  2064.            );
  2065.         }
  2066.     if (!xp) break;
  2067.     x = *++xp;                          /* See if options are bundled */
  2068.     }
  2069.     return(0);
  2070. }
  2071. #else /* No command-line interface... */
  2072. extern int xargc;
  2073. int
  2074. cmdlin() {
  2075.     if (xargc > 1) {
  2076.         XFATAL("Sorry, command-line options disabled.");
  2077.     }
  2078. }
  2079. #endif /* NOCMDL */