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

通讯/手机编程

开发平台:

Windows_Unix

  1. "  (or similar) file to your screen.",
  2. " ",
  3. "SET SERVER CD-MESSAGE FILE name",
  4. "  Tells the name of the file to be displayed as a CD-MESSAGE, such as",
  5. "  READ.ME (SHOW SERVER tells the current CD-MESSAGE FILE name).",
  6. "  To specify more than one filename to look for, use {{name1}{name2}..}.",
  7. "  Synonym: SET CD MESSAGE FILE <list>.",
  8. " ",
  9. "SET SERVER DISPLAY {ON,OFF}",
  10. "  Tells whether local-mode C-Kermit during server operation should put a",
  11. "  file transfer display on the screen.  Default is OFF.",
  12. " ",
  13. "SET SERVER GET-PATH [ directory [ directory [ ... ] ] ]",
  14. "  Tells the C-Kermit server where to look for files whose names it receives",
  15. "  from client GET commands when the names are not fully specified pathnames.",
  16. "  Default is no GET-PATH, so C-Kermit looks only in its current directory.",
  17. " ",
  18. "SET SERVER IDLE-TIMEOUT seconds",
  19. "  Idle time limit while in server mode, 0 for no limit.",
  20. #ifndef OS2
  21. "  NOTE: SERVER IDLE-TIMEOUT and SERVER TIMEOUT are mutually exclusive.",
  22. #endif /* OS2 */
  23. " ",
  24. "SET SERVER KEEPALIVE {ON,OFF}",
  25. "  Tells whether C-Kermit should send "keepalive" packets while executing",
  26. "  REMOTE HOST commands, which is useful in case the command takes a long",
  27. "  time to produce any output and therefore might cause the operation to time",
  28. "  out.  ON by default; turn it OFF if it causes trouble with the client or",
  29. "  slows down the server too much.",
  30. " ",
  31. "SET SERVER LOGIN [ username [ password [ account ] ] ]",
  32. "  Sets up a username and optional password which must be supplied before",
  33. "  the server will respond to any commands other than REMOTE LOGIN.  The",
  34. "  account is ignored.  If you enter SET SERVER LOGIN by itself, then login",
  35. "  is no longer required.  Only one SET SERVER LOGIN command can be in effect",
  36. "  at a time; C-Kermit does not support multiple user/password pairs.",
  37. " ",
  38. "SET SERVER TIMEOUT n",
  39. "  Server command wait timeout interval, how often the C-Kermit server issues",
  40. "  a NAK while waiting for a command packet.  Specify 0 for no NAKs at all.",
  41. "  Default is 0.",
  42. ""
  43. };
  44. #endif /* NOSERVER */
  45. static char *hmhrmt[] = {
  46. "The REMOTE command sends file management instructions or other commands",
  47. "to a Kermit server.  There should already be a Kermit running in server",
  48. "mode on the other end of the currently selected line.  Type REMOTE ? to",
  49. "see a list of available remote commands.  Type HELP REMOTE x to get",
  50. "further information about a particular remote command 'x'.",
  51. " ",
  52. "All REMOTE commands except LOGIN and LOGOUT have R-command shortcuts;",
  53. "for example, RDIR for REMOTE DIR, RCD for REMOTE CD, etc.",
  54. "" };
  55. #ifndef NOSPL
  56. static char *ifhlp[] = { "Syntax: IF [NOT] condition commandlist",
  57. " ",
  58. "If the condition is (is not) true, do the commandlist.  The commandlist",
  59. "can be a single command, or a list of commands separated by commas and",
  60. "enclosed in braces.  The condition can be a single condition or a group of",
  61. "conditions separated by AND (&&) or OR (||) and enclosed in parentheses.",
  62. "Examples:",
  63. " ",
  64. "  IF EXIST oofa.txt <command>",
  65. "  IF ( EXIST oofa.txt || = \v(nday) 3 ) <command>",
  66. "  IF ( EXIST oofa.txt || = \v(nday) 3 ) { <command>, <command>, ... }",
  67. " ",
  68. "The conditions are:",
  69. " ",
  70. "  SUCCESS     - The previous command succeeded",
  71. "  OK          - Synonym for SUCCESS",
  72. "  FAILURE     - The previous command failed",
  73. "  ERROR       - Synonym for FAILURE",
  74. "  FLAG        - Succeeds if SET FLAG ON, fails if SET FLAG OFF",
  75. "  BACKGROUND  - C-Kermit is running in the background",
  76. #ifdef CK_IFRO
  77. "  FOREGROUND  - C-Kermit is running in the foreground",
  78. "  REMOTE-ONLY - C-Kermit was started with the -R command-line option",
  79. #else
  80. "  FOREGROUND  - C-Kermit is running in the foreground",
  81. #endif /* CK_IFRO */
  82. "  ALARM       - SET ALARM time has passed",
  83. "  ASKTIMEOUT  - The most recent ASK, ASKQ, GETC, or GETOK timed out",
  84. "  EMULATION   - Succeeds if executed while in CONNECT mode",
  85. #ifdef OS2
  86. "  TAPI        - Current connection is via a Microsoft TAPI device",
  87. #endif /* OS2 */
  88. " ",
  89. "  AVAILABLE CRYPTO                  - Encryption is available",
  90. "  AVAILABLE KERBEROS4               - Kerberos 4 authentication is available",
  91. "  AVAILABLE KERBEROS5               - Kerberos 5 authentication is available",
  92. "  AVAILABLE NTLM                    - NTLM authentication is available",
  93. "  AVAILABLE SRP                     - SRP authentication is available",
  94. "  AVAILABLE SSL                     - SSL/TLS authentication is available",
  95. "  MATCH string pattern              - Succeeds if string matches pattern",
  96. #ifdef CKFLOAT
  97. "  FLOAT number                      - Succeeds if floating-point number",
  98. #endif /* CKFLOAT */
  99. "  COMMAND word                      - Succeeds if word is built-in command",
  100. "  DEFINED variablename or macroname - The named variable or macro is defined",
  101. "  NUMERIC variable or constant      - The variable or constant is numeric",
  102. "  EXIST filename                    - The named file exists",
  103. "  ABSOLUTE filename                 - The filename is absolute, not relative",
  104. #ifdef CK_TMPDIR
  105. "  DIRECTORY string                  - The string is the name of a directory",
  106. #endif /* CK_TMPDIR */
  107. "  READABLE filename                 - Succeeds if the file is readable",
  108. "  WRITEABLE filename                - Succeeds if the file is writeable",
  109. #ifdef ZFCDAT
  110. "  NEWER file1 file2                 - The 1st file is newer than the 2nd one",
  111. #endif /* ZFCDAT */
  112. "  OPEN { READ-FILE,SESSION-LOG,...} - The given file or log is open",
  113. #ifndef NOLOCAL
  114. "  OPEN CONNECTION                   - A connection is open",
  115. #endif /* NOLOCAL */
  116. " ",
  117. "  COUNT   - subtract one from COUNT, execute the command if the result is",
  118. "            greater than zero (see SET COUNT)",
  119. " ",
  120. "  EQUAL s1 s2 - s1 and s2 (character strings or variables) are equal",
  121. "  LLT s1 s2   - s1 is lexically (alphabetically) less than s2",
  122. "  LGT s1 s1   - s1 is lexically (alphabetically) greater than s2",
  123. " ",
  124. "  =  n1 n2 - n1 and n2 (numbers or variables containing numbers) are equal",
  125. "  <  n1 n2 - n1 is arithmetically less than n2",
  126. "  <= n1 n2 - n1 is arithmetically less than or equal to n2",
  127. "  >  n1 n2 - n1 is arithmetically greater than n2",
  128. "  >= n1 n2 - n1 is arithmetically greater than or equal to n2",
  129. " ",
  130. "  (number by itself) - fails if the number is 0, succeeds otherwise",
  131. " ",
  132. "  TRUE     - always succeeds",
  133. "  FALSE    - always fails",
  134. " ",
  135. "The IF command may be followed on the next line by an ELSE command. Example:",
  136. " ",
  137. "  IF < \%x 10 ECHO It's less",
  138. "  ELSE echo It's not less",
  139. " ",
  140. "It can also include an ELSE part on the same line if braces are used:",
  141. " ",
  142. "  IF < \%x 10 { ECHO It's less } ELSE { ECHO It's not less }",
  143. " ",
  144. "Also see HELP WILDCARD (for IF MATCH pattern syntax).",
  145. "" };
  146. static char *hmxxeval[] = { "Syntax: EVALUATE variable expression",
  147. "  Evaluates the expression and assigns its value to the given variable.",
  148. "  The expression can contain numbers and/or numeric-valued variables or",
  149. "  functions, combined with mathematical operators and parentheses in",
  150. "  traditional notation.  Operators include +-/*(), etc.  Example:",
  151. "  EVALUATE \%n (1+1) * (\%a / 3).",
  152. " ",
  153. "  NOTE: Prior to C-Kermit 7.0, the syntax was "EVALUATE expression"",
  154. "  (no variable), and the result was printed.  Use SET EVAL { OLD, NEW }",
  155. "  to choose the old or new behavior, which is NEW by default.",
  156. " ",
  157. "Alse see: HELP FUNCTION EVAL.",
  158. "" };
  159. #endif /* NOSPL */
  160. #ifndef NOSPL
  161. static char *ifxhlp[] = { "
  162. Syntax: XIF condition { commandlist } [ ELSE { commandlist } ]",
  163. "  Obsolete.  Same as IF (see HELP IF).",
  164. "" };
  165. static char *forhlp[] = { "
  166. Syntax: FOR variablename initial-value final-value increment { commandlist }",
  167. "  FOR loop.  Execute the comma-separated commands in the commandlist the",
  168. "  number of times given by the initial value, final value and increment.",
  169. "  Example:  FOR \%i 10 1 -1 { pause 1, echo \%i }", "" };
  170. static char *whihlp[] = { "
  171. Syntax: WHILE condition { commandlist }",
  172. "  WHILE loop.  Execute the comma-separated commands in the bracketed",
  173. "  commandlist while the condition is true.  Conditions are the same as for",
  174. "  IF commands.",
  175. "" };
  176. static char *swihlp[] = {
  177. "Syntax: SWITCH <variable> { case-list }",
  178. "  Selects from a group of commands based on the value of a variable.",
  179. "  The case-list is a series of lines like these:",
  180. " ",
  181. "    :x, command, command, ..., break",
  182. " ",
  183. "  where "x" is a possible value for the variable.  At the end of the",
  184. "  case-list, you can put a "default" label to catch when the variable does",
  185. "  not match any of the labels:",
  186. " ",
  187. "    :default, command, command, ...",
  188. " ",
  189. "The case label "x" can be a character, a string, a variable, a function",
  190. "invocation, a pattern, or any combination of these.  See HELP WILDCARDS",
  191. "for information about patterns.",
  192. ""};
  193. static char *openhlp[] = {
  194. "Syntax:  OPEN mode filename",
  195. "  For use with READ and WRITE commands.  Open the local file in the",
  196. "  specified mode: READ, WRITE, or APPEND.  !READ and !WRITE mean to read",
  197. "  from or write to a system command rather than a file.  Examples:",
  198. " ",
  199. "    OPEN READ oofa.txt",
  200. "    OPEN !READ sort foo.bar",
  201. "" };
  202. static char *hxxaskq[] = {
  203. "Syntax:  ASKQ variablename [ prompt ]",
  204. "Example: ASKQ \%p { Password:}",
  205. "  Issues the prompt and defines the variable to be whatever you type in.",
  206. "  The characters that you type do not echo on the screen.",
  207. "  Use braces to preserve leading and/or trailing spaces in the prompt.",
  208. "  To include a question mark, precede it by backslash (\).",
  209. " ",
  210. "Also see SET ASK-TIMER.",
  211. ""};
  212. static char *hxxask[] = {
  213. "Syntax:  ASK variablename [ prompt ]",
  214. "Example: ASK \%n { What is your name\? }",
  215. "  Issues the prompt and defines the variable to be whatever you type in.",
  216. "  Use braces to preserve leading and/or trailing spaces in the prompt.",
  217. "  To include a question mark, precede it by backslash (\).",
  218. " ",
  219. "Also see SET ASK-TIMER.",
  220. ""};
  221. static char *hxxgetc[] = {
  222. "Syntax:  GETC variablename [ prompt ]",
  223. "Example: GETC \%c { Type any character to continue...}",
  224. "  Issues the prompt and sets the variable to the first character you type.",
  225. "  Use braces to preserve leading and/or trailing spaces in the prompt.",
  226. " ",
  227. "Also see SET ASK-TIMER.",
  228. ""};
  229. static char *hmxytimer[] = {
  230. "Syntax: SET ASK-TIMER number",
  231. "  For use with ASK, ASKQ, GETOK, and GETC.  If ASK-TIMER is set to a number",
  232. "  greater than 0, these commands will time out after the given number of",
  233. "  seconds with no response.  This command is "sticky", so to revert to",
  234. untimed ASKs after a timed one, use SET ASK-TIMER 0.  Also see IF ASKTIMEOUT.",
  235. ""};
  236. static char *hxxdef[] = {
  237. "Syntax: DEFINE name [ definition ]",
  238. "  Defines a macro or variable.  Its value is the definition, taken",
  239. "  literally.  No expansion or evaluation of the definition is done.  Thus",
  240. "  if the definition includes any variable or function references, their",
  241. "  names are included, rather than their values (compare with ASSIGN).  If",
  242. "  the definition is omitted, then the named variable or macro is undefined.",
  243. " ",
  244. "A typical macro definition looks like this:",
  245. " ",
  246. "  DEFINE name command, command, command, ...",
  247. " ",
  248. "for example:",
  249. " ",
  250. "  DEFINE vax set parity even, set duplex full, set flow xon/xoff",
  251. " ",
  252. "which defines a Kermit command macro called 'vax'.  The definition is a",
  253. "comma-separated list of Kermit commands.  Use the DO command to execute",
  254. "the macro, or just type its name, followed optionally by arguments.",
  255. " ",
  256. "The definition of a variable can be anything at all, for example:",
  257. " ",
  258. "  DEFINE \%a Monday",
  259. "  DEFINE \%b 3",
  260. " ",
  261. "These variables can be used almost anywhere, for example:",
  262. " ",
  263. "  ECHO Today is \%a",
  264. "  SET BLOCK-CHECK \%b",
  265. "" };
  266. static char *hxxass[] = {
  267. "Syntax:  ASSIGN variablename string.",
  268. "Example: ASSIGN \%a My name is \%b.",
  269. "  Assigns the current value of the string to the variable (or macro).",
  270. "  The definition string is fully evaluated before it is assigned, so that",
  271. "  the values of any variables are contained are used, rather than their",
  272. "  names.  Compare with DEFINE.  To illustrate the difference, try this:",
  273. " ",
  274. "    DEFINE \%a hello",
  275. "    DEFINE \%x \%a",
  276. "    ASSIGN \%y \%a",
  277. "    DEFINE \%a goodbye",
  278. "    ECHO \%x \%y",
  279. " ",
  280. "  This prints 'goodbye hello'.", "" };
  281. static char *hxxdec[] = {
  282. "Syntax: DECREMENT variablename [ number ]",
  283. "  Decrement (subtract one from) the value of a variable if the current value",
  284. "  is numeric.  If the number argument is given, subtract that number",
  285. "  instead.",
  286. " ",
  287. "Examples: DECR \%a, DECR \%a 7, DECR \%a \%n", "" };
  288. static char *hxxinc[] = {
  289. "Syntax: INCREMENT variablename [ number ]",
  290. "  Increment (add one to) the value of a variable if the current value is",
  291. "  numeric.  If the number argument is given, add that number instead.",
  292. " ",
  293. "Examples: INCR \%a, INCR \%a 7, INCR \%a \%n", "" };
  294. #endif /* NOSPL */
  295. #ifdef ANYX25
  296. #ifndef IBMX25
  297. static char *hxxpad[] = {
  298. "Syntax: PAD command",
  299. "X.25 PAD commands:",
  300. " ",
  301. "    PAD CLEAR     - Clear the virtual call",
  302. "    PAD STATUS    - Return the status of virtual call",
  303. "    PAD RESET     - Send a reset packet",
  304. "    PAD INTERRUPT - Send an interrupt packet",
  305. ""};
  306. #endif /* IBMX25 */
  307. static char *hxyx25[] = {
  308. "Syntax: SET X.25 option { ON [ data ], OFF }",
  309. " ",
  310. "X.25 call options:",
  311. "  CLOSED-USER-GROUP { ON index, OFF }",
  312. "    Enable or disable closed user group call, where index is the group",
  313. "    index, 0 to 99.",
  314. "  REVERSE-CHARGE { ON, OFF }",
  315. "    Tell whether you want to reverse the charges for the call.",
  316. "  CALL-USER-DATA { ON string, OFF }",
  317. "    Specify call user-data for the X.25 call.",
  318. ""};
  319. #endif /* ANYX25 */
  320. static char *hxyprtr[] = {
  321. #ifdef PRINTSWI
  322. "Syntax: SET PRINTER [ switches ] [ name ]",
  323. " ",
  324. "  Specifies the printer to be used for transparent-print, autoprint, and",
  325. "  screen-dump material during terminal emulation, as well as for the PRINT",
  326. "  command, plus various options governing print behavior.",
  327. " ",
  328. "Switches for specifying the printer by type:",
  329. " ",
  330. "/NONE",
  331. "  Include this switch to specify that all printer actions should simply be",
  332. "  skipped.  Use this, for example, if you have no printer.",
  333. " ",
  334. "/DOS-DEVICE[:name]",
  335. "  Include this to declare a DOS printer and to specify its name, such as",
  336. "  PRN, LPT1, etc.",
  337. " ",
  338. #ifdef NT
  339. "/WINDOWS-QUEUE[:queue-name]",
  340. "  Include this to declare a Windows printer and specify its queue name.",
  341. "  Type question mark (?) after the colon (:) to see a list of known queue",
  342. "  names.",
  343. " ",
  344. #endif /* NT */
  345. "/FILE[:name]",
  346. "  Specifies that all printer material is to be appended to the named file,",
  347. "  rather than being sent to a printer.  If the file does not exist, it is",
  348. "  created the first time any material is to be printed.",
  349. " ",
  350. "/PIPE[:name]",
  351. "  Specifies that all printer material is to be sent as standard input to",
  352. "  the program or command whose name is given.  Example:",
  353. " ",
  354. "    SET PRINTER /PIPE:{textps > lpt1}",
  355. " ",
  356. "If you give a printer name without specifying any of these switches, then it",
  357. "is assumed to be a DOS printer device or filename unless the name given",
  358. "(after removing enclosing braces, if any) starts with "|", 
  359. in which case it",
  360. "is a pipe.  Examples:",
  361. " ",
  362. "  SET PRINTER LPT1               <-- DOS device",
  363. "  SET PRINTER {| textps > lpt1}  <-- Pipe",
  364. " ",
  365. "The next group of switches tells whether the printer is one-way or",
  366. "bidirectional (two-way):",
  367. " ",
  368. "/OUTPUT-ONLY",
  369. "  Include this to declare the printer capable only of receiving material to",
  370. "  be printed, but not sending anything back.  This is the normal kind of",
  371. "  printer, Kermit's default kind, and the opposite of /BIDIRECTIONAL.",
  372. " ",
  373. "/BIDIRECTIONAL",
  374. "  Include this to declare the printer bidirectional.  This is the opposite ",
  375. "  of /OUTPUT-ONLY.  You can also use this option with serial printers, even",
  376. "  if they aren't bidirectional, in case you need to specify speed, flow",
  377. "  control, or parity.",
  378. " ",
  379. "The next group applies only to bidirectional and/or serial printers:",
  380. " ",
  381. "/FLOW-CONTROL:{NONE,XON/XOFF,RTS/CTS,KEEP}",
  382. "  Flow control to use with a serial bidirectional printer, default KEEP;",
  383. #ifdef NT
  384. "  i.e. use whatever the Windows driver for the port normally uses.",
  385. #else
  386. "  i.e. use whatever the OS/2 driver for the port normally uses.",
  387. #endif /* NT */
  388. " ",
  389. "/PARITY:{NONE,EVEN,ODD,SPACE,MARK}",
  390. "  Parity to use with a serial printer, default NONE; i.e. use 8 data bits",
  391. "  and no parity.  If you omit the colon and the keyword, NONE is selected.",
  392. " ",
  393. "/SPEED:number",
  394. "  Interface speed, in bits per second, to use with a serial printer, such as",
  395. "  2400, 9600, 19200, etc.  Type SET PRINTER /SPEED:? for a list of possible",
  396. "  speeds.",
  397. " ",
  398. "The next group deals with print jobs -- how to identify them, how to start",
  399. "them, how to terminate them:",
  400. " ",
  401. "/TIMEOUT[:number]",
  402. "  Used with host-directed transparent or auto printing, this is the number",
  403. "  of seconds to wait after the host closes the printer before terminating",
  404. "  the print job if the printer is not opened again during the specified",
  405. "  amount of time.",
  406. " ",
  407. "/JOB-HEADER-FILE[:filename]",
  408. "  The name of a file to be sent to the printer at the beginning of each",
  409. "  print job, as a burst page, or to configure the printer.  Normally no file",
  410. "  is is sent.",
  411. " ",
  412. "/END-OF-JOB-STRING[:string]",
  413. "  String of characters to be sent to the printer at the end of the print",
  414. "  job, usually used to force the last or only page out of the printer.  When",
  415. "  such a string is needed, it usually consists of a single formfeed: "set",
  416. "  printer /end-of-job:{\12}".  No end-of-job string is sent unless you",
  417. "  specify one with this option.  If the string contains any spaces or",
  418. "  control characters (even in backslash notation, as above), enclose it in",
  419. "  braces.",
  420. " ",
  421. "The final group is for use with printers that print only PostScript:",
  422. " ",
  423. "/POSTSCRIPT or /PS",
  424. "  Indicates that K95 should convert all text to PostScript before sending",
  425. "  it to the printer.  The fixed-pitch Courier-11 font is used.",
  426. " ",
  427. "/WIDTH:number",
  428. "  Specifies the width of the page in characters.  If this switch is not",
  429. "  given, 80 is used.",
  430. " ",
  431. "/HEIGHT:number",
  432. "  Specifies the height of the page in lines.  If this switch is not given",
  433. "  66 is used.",
  434. " ",
  435. "/NOPOSTSCRIPT or /NOPS",
  436. "  Indicates that K95 should not convert all text to PostScript before",
  437. "  sending it to the printer.",
  438. " ",
  439. "SHOW PRINTER displays your current printer settings.",
  440. #else
  441. #ifdef UNIX
  442. "Syntax: SET PRINTER [ { |command, filename } ]",
  443. "  Specifies the command (such as "|lpr") or filename to be used by the",
  444. "  PRINT command.  If a filename is given, each PRINT command appends to the",
  445. "  given file.  If the SET PRINTER argument contains spaces, it must be",
  446. "  enclosed in braces, e.g. "set printer {| lpr -Plaser}". If the argument",
  447. "  is omitted the default value is restored.  SHOW PRINTER lists the current",
  448. "  printer.  See HELP PRINT for further info.",
  449. #else
  450. "Sorry, SET PRINTER not available yet.",
  451. #endif /* UNIX */
  452. #endif /* PRINTSWI */
  453. ""};
  454. #ifdef OS2
  455. #ifdef BPRINT
  456. static char *hxybprtr[] = {
  457. "Syntax: SET BPRINTER [ portname speed [ parity [ flow-control ] ] ]",
  458. "  (Obsolete, replaced by SET PRINTER /BIDIRECTIONAL.)",
  459. ""};
  460. #endif /* BPRINT */
  461. #endif /* OS2 */
  462. static char *hxyexit[] = {
  463. "Syntax: SET EXIT ON-DISCONNECT { ON, OFF }",
  464. "  When ON, C-Kermit EXITs automatically when a network connection",
  465. "  is terminated either by the host or by issuing a HANGUP command.",
  466. " ",
  467. "Syntax: SET EXIT STATUS number",
  468. #ifdef NOSPL
  469. "  Set C-Kermit's program return code to the given number.",
  470. #else
  471. "  Set C-Kermit's program return code to the given number, which can be a",
  472. "  constant, variable, function result, or arithmetic expression.",
  473. #endif /* NOSPL */
  474. " ",
  475. "Syntax: SET EXIT WARNING { ON, OFF, ALWAYS }",
  476. "  When EXIT WARNING is ON, issue a warning message and ask for confirmation",
  477. "  before EXITing if a connection to another computer might still be open.",
  478. "  When EXIT WARNING is ALWAYS, confirmation is always requested.  When OFF",
  479. "  it is never requested.  The default is ON.",
  480. "" };
  481. #ifndef NOSPL
  482. static char *hxxpau[] = {
  483. "Syntax:  PAUSE [ { number-of-seconds, hh:mm:ss } ]",
  484. "Example: PAUSE 3  or  PAUSE 14:52:30",
  485. "  Do nothing for the specified number of seconds or until the given time of",
  486. "  day in 24-hour hh:mm:ss notation.  If the time of day is earlier than the",
  487. "  current time, it is assumed to be tomorrow.  If no argument given, one",
  488. "  second is used.  The pause can be interrupted by typing any character on",
  489. "  the keyboard unless SLEEP CANCELLATION is OFF.  If interrupted, PAUSE",
  490. "  fails, otherwise it succeeds.  Synonym: SLEEP.",
  491. "" };
  492. static char *hxxmsl[] = {
  493. "Syntax:  MSLEEP [ number ]",
  494. "Example: MSLEEP 500",
  495. "  Do nothing for the specified number of milliseconds; if no number given,",
  496. "  100 milliseconds.","" };
  497. #endif /* NOSPL */
  498. #ifndef NOPUSH
  499. extern int nopush;
  500. static char *hxxshe[] = {
  501. "Syntax: !, @, RUN, PUSH, or SPAWN, optionally followed by a command.",
  502. "  Gives the command to the local operating system's command processor, and",
  503. "  displays the results on the screen.  If the command is omitted, enters the",
  504. "  system's command line interpreter or shell; exit from it (the command for",
  505. "  this is usually EXIT or QUIT or LOGOUT) to return to Kermit.",
  506. ""
  507. };
  508. #endif /* NOPUSH */
  509. #ifndef NOXMIT
  510. static char *hxxxmit[] = {
  511. #ifndef NOCSETS
  512. "Syntax: TRANSMIT { /COMMAND, /TEXT, /BINARY, /TRANSPARENT } filename",
  513. #else
  514. "Syntax: TRANSMIT { /COMMAND, /TEXT, /BINARY } filename",
  515. #endif /* NOCSETS */
  516. "  Sends the contents of a file, without any error checking or correction,",
  517. "  to the computer on the other end of your SET LINE or SET HOST connection",
  518. "  (or if C-Kermit is in remote mode, displays it on the screen).  The",
  519. "  filename is the name of a single file (no wildcards) to be sent or, if",
  520. "  the /COMMAND switch is included, the name of a command whose output is",
  521. "  to be sent.",
  522. " ",
  523. "  The file is sent according to your current FILE TYPE setting (BINARY or",
  524. "  TEXT), which you can override with a /BINARY or /TEXT switch without",
  525. "  changing the global setting.  In text mode, it is sent a line at a time,",
  526. "  with carriage return at the end of each line (as if you were typing it at",
  527. "  your keyboard), and C-Kermit waits for a linefeed to echo before sending",
  528. "  the next line.  In binary mode, it is sent a character at a time, with no",
  529. "  feedback required.",
  530. " ",
  531. #ifndef NOCSETS
  532. "  Character sets are translated according to your current FILE and TERMINAL",
  533. "  CHARACTER-SET settings when TRANSMIT is in text mode.  Include /TRANSPARENT"
  534. ,
  535. "  to disable character-set translation in text mode (/TRANSPARENT implies",
  536. "  /TEXT).",
  537. " ",
  538. #endif /* NOCSETS */
  539. "  There can be no guarantee that the other computer will receive the file",
  540. "  correctly and completely.  Before you start the TRANSMIT command, you",
  541. "  must put the other computer in data collection mode, for example by",
  542. "  starting a text editor.  TRANSMIT may be interrupted by Ctrl-C.  Synonym:",
  543. "  XMIT.  See HELP SET TRANSMIT for further information.",
  544. "" };
  545. #endif /* NOXMIT */
  546. #ifndef NOCSETS
  547. static char *hxxxla[] = {
  548. "Syntax: TRANSLATE file1 cs1 cs2 [ file2 ]",
  549. "  Translates file1 from the character set cs1 into the character set cs2",
  550. "  and stores the result in file2.  The character sets can be any of",
  551. "  C-Kermit's file character sets.  If file2 is omitted, the translation",
  552. "  is displayed on the screen.  An appropriate intermediate character-set",
  553. "  is chosen automatically, if necessary.  Synonym: XLATE.  Example:",
  554. " ",
  555. "  TRANSLATE lasagna.lat latin1 italian lasagna.nrc",
  556. "" };
  557. #endif /* NOCSETS */
  558. #ifndef NOSPL
  559. static char *hxxwai[] = {
  560. "Syntax: WAIT { number-of-seconds, hh:mm:ss } [modem-signal(s)]",
  561. " ",
  562. "Examples:",
  563. "  wait 5 cd cts",
  564. "  wait 23:59:59 cd",
  565. " ",
  566. "  Waits up to the given number of seconds or the given time of day for all",
  567. "  the specified modem signals to appear on the serial communication device.",
  568. "  Sets FAILURE if the signals do not appear in the given time or interrupted",
  569. "  from the keyboard during the waiting period.  Also see HELP PAUSE.",
  570. " ",
  571. "Signals:",
  572. "  cd  = Carrier Detect;",
  573. "  dsr = Dataset Ready;",
  574. "  cts = Clear To Send;",
  575. "  ri  = Ring Indicate.",
  576. "" };
  577. #endif /* NOSPL */
  578. static char *hxxwri[] = {
  579. "Syntax: WRITE name text",
  580. "  Writes the given text to the named log or file.  The text text may include",
  581. "  backslash codes, and is not terminated by a newline unless you include the",
  582. "  appropriate code.  The name parameter can be any of the following:",
  583. " ",
  584. "   DEBUG-LOG",
  585. "   ERROR (standard error)",
  586. #ifndef NOSPL
  587. "   FILE (the OPEN WRITE, OPEN !WRITE, or OPEN APPEND file, see HELP OPEN)",
  588. #endif /* NOSPL */
  589. "   PACKET-LOG",
  590. "   SCREEN (compare with ECHO)",
  591. #ifndef NOLOCAL
  592. "   SESSION-LOG",
  593. #endif /* NOLOCAL */
  594. "   TRANSACTION-LOG", "" };
  595. #ifndef NODIAL
  596. static char *hxxlook[] = { "Syntax: LOOKUP name",
  597. "  Looks up the given name in the dialing directory or directories, if any,",
  598. "  specified in the most recent SET DIAL DIRECTORY command.  Each matching",
  599. "  entry is shown, along with any transformations that would be applied to",
  600. "  portable-format entries based on your locale.  HELP DIAL, HELP SET DIAL",
  601. "  for further info.",
  602. ""
  603. };
  604. static char *hxxansw[] = { "Syntax:  ANSWER [ <seconds> ]",
  605. #ifdef OS2
  606. "  Waits for a modem call to come in.  Prior SET MODEM TYPE and SET PORT",
  607. #else
  608. "  Waits for a modem call to come in.  Prior SET MODEM TYPE and SET LINE",
  609. #endif /* OS2 */
  610. "  required.  If <seconds> is 0 or not specified, Kermit waits forever or",
  611. "  until interrupted, otherwise Kermit waits the given number of seconds.",
  612. "  The ANSWER command puts the modem in autoanswer mode.  Subsequent DIAL",
  613. "  commands will automatically put it (back) in originate mode.  SHOW MODEM,",
  614. "  HELP SET MODEM for more info.",
  615. ""
  616. };
  617. static char *hxxdial[] = { "Syntax:  DIAL phonenumber",
  618. "Example: DIAL 7654321",
  619. "  
  620. Dials a number using an autodial modem.  First you must SET MODEM TYPE, then",
  621. #ifdef OS2
  622. "  SET PORT, then SET SPEED.  Then give the DIAL command, including the phone",
  623. #else
  624. "  SET LINE, then SET SPEED.  Then give the DIAL command, including the phone",
  625. #endif /* OS2 */
  626. "  number, for example:",
  627. " ",
  628. "   DIAL 7654321",
  629. " ",
  630. #ifdef NETCONN
  631. "  If the modem is on a network modem server, SET HOST first, then SET MODEM,",
  632. "  then DIAL.  See also SET DIAL, SET MODEM, SET LINE, SET HOST, SET SPEED,",
  633. "  REDIAL, and PDIAL.",
  634. " ",
  635. #else
  636. "  See also SET DIAL, SET MODEM, SET LINE, SET SPEED, PDIAL, and REDIAL.",
  637. " ",
  638. #endif /* NETCONN */
  639. "If the phonenumber starts with a letter, and if you have used the SET DIAL",
  640. "DIRECTORY command to specify one or more dialing-directory files, Kermit",
  641. "looks it up in the given file(s); if it is found, the name is replaced by",
  642. "the number or numbers associated with the name.  If it is not found, the",
  643. "name is sent to the modem literally.",
  644. " ",
  645. "If the phonenumber starts with an equals sign ("="), this forces the part",
  646. "after the = to be sent literally to the modem, even if it starts with a",
  647. "letter, without any directory lookup.",
  648. " ",
  649. "You can also give a list of phone numbers enclosed in braces, e.g:",
  650. " ",
  651. "  dial {{7654321}{8765432}{+1 (212 555-1212}}",
  652. " ",
  653. "(Each number is enclosed in braces and the entire list is also enclosed in",
  654. "braces.)  In this case, each number is tried until there is an answer.  The",
  655. "phone numbers in this kind of list can not be names of dialing directory",
  656. "entries.",
  657. " ",
  658. "A dialing directory is a plain text file, one entry per line:",
  659. " ",
  660. "  name  phonenumber  ;  comments",
  661. " ",
  662. "for example:",
  663. " ",
  664. "  work    9876543              ; This is a comment",
  665. "  e-mail  +1  (212) 555 4321   ; My electronic mailbox",
  666. "  heise   +49 (511) 535 2301   ; Verlag Heinz Heise BBS",
  667. " ",
  668. "If a phone number starts with +, then it must include country code and",
  669. "area code, and C-Kermit will try to handle these appropriately based on",
  670. "the current locale (HELP SET DIAL for further info); these are called",
  671. "PORTABLE entries.  If it does not start with +, it is dialed literally.",
  672. " ",
  673. "If more than one entry is found with the same name, Kermit dials all of",
  674. "them until the call is completed; if the entries are in portable format,",
  675. "Kermit dials then in cheap-to-expensive order: internal, then local, then",
  676. "long-distance, then international, based on its knowledge of your local",
  677. "country code and area code (see HELP SET DIAL).",
  678. " ",
  679. "Specify your dialing directory file(s) with the SET DIAL DIRECTORY command.",
  680. "" };
  681. #ifdef CK_TAPI
  682. static char *hxxtapi[] = {
  683. "TAPI CONFIGURE-LINE <tapi-line>",
  684. "  Displays the TAPI Configure Line Dialog box and allows you to",
  685. "  alter the default configuration for the specified <tapi-line>.",
  686. " ",
  687. "TAPI DIALING-PROPERTIES",
  688. "  Displays the TAPI Dialing Properties (locations) Dialog box.  The",
  689. "  Dialing rules may be changed and locations created and deleted.",
  690. "  When the dialog box is closed, K-95 imports the current Dialing",
  691. "  Properties' Location into the Kermit DIAL command settings.",
  692. ""};
  693. static char *hxytapi[] = {
  694. "SET TAPI LINE <tapi-line>",
  695. "  Opens a TAPI device for use by Kermit.",
  696. " ",
  697. "SET TAPI MODEM-DIALING {ON, [OFF]}",
  698. "  If TAPI MODEM-DIALING is OFF when SET TAPI LINE is issued, Kermit opens",
  699. "  the TAPI device directly as a "raw port".  The device is unavailable to",
  700. "  other applications and Kermit performs dialing functions using its",
  701. "  built-in dialing and modem databases.  If TAPI MODEM-DIALING is ON, TAPI",
  702. "  handles all dialing functions and the port may be shared with other",
  703. "  applications when a call in not active.  When TAPI MODEM-DIALING is OFF,",
  704. "  SET MODEM TYPE TAPI Kermit uses the TAPI modem commands imported from the",
  705. "  Windows Registry during the previous SET TAPI LINE call.",
  706. " ",
  707. "SET TAPI LOCATION <tapi-location>",
  708. "  Specifies the TAPI location to make current for the entire system.  The",
  709. "  <tapi-location>'s dialing properties are imported into Kermit's SET DIAL",
  710. "  command database.",
  711. " ",
  712. "SET TAPI PHONE-NUMBER-CONVERSIONS {ON, OFF, [AUTO]}",
  713. "  Controls whether the phone number conversions are performed by TAPI (ON)",
  714. "  or by Kermit (OFF), or according the type of port that was selected",
  715. "  (AUTO); AUTO is the default, and is equivalent to ON if the current",
  716. "  LINE/PORT is a TAPI device and TAPI MODEM-DIALING is ON, OFF otherwise.",
  717. " ",
  718. "SET TAPI MODEM-LIGHTS {[ON], OFF}",
  719. "  Displays a modem lights indicator on the Windows 95 Taskbar.  Does nothing",
  720. "  in Windows NT 4.0.",
  721. " ",
  722. "SET TAPI MANUAL-DIALING {ON, [OFF]}",
  723. "  Displays a dialog box during dialing requesting that you manually dial the",
  724. "  phone before continuing.  Applies only when TAPI MODEM-DIALING is ON.",
  725. " ",
  726. "SET TAPI WAIT-FOR-CREDIT-CARD-TONE <seconds>",
  727. "  Some modems don't support the '$' (BONG) symbol during dialing, which",
  728. "  means "wait for credit card tone before continuing."  If TAPI recognizes",
  729. "  the modem as one that does not support BONG, it replaces the '$' with",
  730. "  <seconds> worth of pauses.  The default is 8 seconds.  This command",
  731. "  applies only when TAPI MODEM-DIALING is ON",
  732. " ",
  733. "SET TAPI PRE-DIAL-TERMINAL {ON, [OFF]}",
  734. "SET TAPI POST-DIAL-TERMINAL {ON, [OFF]}",
  735. "  Displays a small terminal window that may be used to communicate with the",
  736. "  modem or the host prior to or immediately after dialing; applies only when",
  737. "  TAPI MODEM-DIALING is ON",
  738. " ",
  739. "SET TAPI INACTIVITY-TIMEOUT <minutes>",
  740. "  Specifies the number of minutes of inactivity that may go by before TAPI",
  741. "  disconnects the line.  The default is 0 which means disable this function.",
  742. "  Applies only when TAPI MODEM-DIALING is ON.",
  743. " ",
  744. "SET TAPI USE-WINDOWS-CONFIGURATION {ON, [OFF]}",
  745. "  Specifies whether the TAPI modem values for speed, parity, stop bits, flow",
  746. "  control, etc. are used in preference to the current values specified",
  747. "  within Kermit-95.",
  748. " ",
  749. ""};
  750. #endif /* CK_TAPI */
  751. #endif /* NODIAL */
  752. #ifdef TNCODE
  753. static char *hmxxtel[] = {
  754. "Syntax: TELNET [ switches ] [ host [ service ] ]",
  755. "  Equivalent to SET NETWORK TYPE TCP/IP, SET HOST host [ service ] /TELNET,",
  756. "  IF SUCCESS CONNECT.  If host is omitted, the previous connection (if any)",
  757. "  is resumed.  Depending on how Kermit has been built switches may be",
  758. "  available to require a secure authentication method and bidirectional",
  759. "  encryption.  See HELP SET TELNET for more info.",
  760. " ",
  761. #ifdef CK_AUTHENTICATION
  762. " /AUTH:<type> is equivalent to SET TELNET AUTH TYPE <type> and",
  763. "   SET TELOPT AUTH REQUIRED with the following exceptions.  If the type",
  764. "   is AUTO, then SET TELOPT AUTH REQUESTED is executed and if the type",
  765. "   is NONE, then SET TELOPT AUTH REFUSED is executed.",
  766. " ",
  767. #endif /* CK_AUTHENTICATION */
  768. #ifdef CK_ENCRYPTION
  769. " /ENCRYPT:<type> is equivalent to SET TELNET ENCRYPT TYPE <type>",
  770. "   and SET TELOPT ENCRYPT REQUIRED REQUIRED with the following exceptions.",
  771. "   If the type is AUTO then SET TELOPT AUTH REQUESTED REQUESTED is executed",
  772. "   and if the type is NONE then SET TELOPT ENCRYPT REFUSED REFUSED is",
  773. "   executed.",
  774. " ",
  775. #endif /* CK_ENCRYPTION */
  776. " /USERID:[<name>]",
  777. "   This switch is equivalent to SET LOGIN USERID <name> or SET TELNET",
  778. "   ENVIRONMENT USER <name>.  If a string is given, it sent to host during",
  779. "   Telnet negotiations; if this switch is given but the string is omitted,",
  780. "   no user ID is sent to the host.  If this switch is not given, your",
  781. "   current USERID value, \v(userid), is sent.  When a userid is sent to the",
  782. "   host it is a request to login as the specified user.",
  783. " ",
  784. #ifdef CK_AUTHENTICATION
  785. " /PASSWORD:[<string>]",
  786. "   This switch is equivalent to SET LOGIN PASSWORD.  If a string is given,",
  787. "   it is treated as the password to be used (if required) by any Telnet",
  788. "   Authentication protocol (Kerberos Ticket retrieval, Secure Remote",
  789. "   Password, or X.509 certificate private key decryption.)  If no password",
  790. "   switch is specified a prompt is issued to request the password if one",
  791. "   is required for the negotiated authentication method.",
  792. #endif /* CK_AUTHENTICATION */
  793. ""};
  794. static char *hxtopt[] = {
  795. "TELOPT { AO, AYT, BREAK, CANCEL, EC, EL, EOF, EOR, GA, IP, DMARK, NOP, SE,",
  796. "         SUSP, SB [ option ], DO [ option ], DONT [ option ],",
  797. "         WILL [ option ], WONT [option] }",
  798. "  This command lets you send all the Telnet protocol commands.  Note that",
  799. "  certain commands do not require a response, and therefore can be used as",
  800. "  nondestructive "probes" to see if the Telnet session is still open;",
  801. "  e.g.:n",
  802. "    set host xyzcorp.com",
  803. "    ...",
  804. "    telopt nop",
  805. "    telopt nop",
  806. "    if fail stop 1 Connection lostn",
  807. "  TELOPT NOP is sent twice because the failure of the connection will not",
  808. "  be detected until the second send is attempted.  This command is meant",
  809. "  primarily as a debugging tool for the expert user.",
  810. ""};
  811. #endif /* TNCODE */
  812. #endif /* NOHELP */
  813. /*  D O H L P  --  Give a help message  */
  814. _PROTOTYP( int dohset, (int) );
  815. #ifndef NOCMDL
  816. _PROTOTYP( int dohopts, (void) );
  817. #endif /* NOCMDL */
  818. #ifndef NOSPL
  819. _PROTOTYP( int dohfunc, (int) );
  820. extern struct keytab fnctab[];
  821. extern int nfuncs;
  822. #endif /* NOSPL */
  823. #ifdef OS2
  824. #ifndef NOKVERBS
  825. _PROTOTYP( int dohkverb, (int) );
  826. extern struct keytab kverbs[];
  827. extern int nkverbs;
  828. #endif /* NOKVERBS */
  829. #endif /* OS2 */
  830. #ifndef NOSPL
  831. static char * hxxdcl[] = {
  832. "Syntax: ARRAY verb operands...",
  833. " ",
  834. "Declares arrays and performs various operations on them.  Arrays have",
  835. "the following syntax:",
  836. " ",
  837. "  \&a[n]",
  838. " ",
  839. "where "a" is a letter and n is a number or a variable with a numeric value",
  840. "or an arithmetic expression.  The value of an array element can be anything",
  841. "at all -- a number, a character, a string, a filename, etc.",
  842. " ",
  843. "The following ARRAY verbs are available:",
  844. " ",
  845. "[ ARRAY ] DECLARE arrayname[n] [ = initializers... ]",
  846. "  Declares an array of the given size, n.  The resulting array has n+1",
  847. "  elements, 0 through n.  Array elements can be used just like any other",
  848. "  variables.  Initial values can be given for elements 1, 2, ... by",
  849. "  including = followed by one or more values separated by spaces.  If you",
  850. "  omit the size, the array is sized according to the number of initializers;",
  851. "  if none are given the array is destroyed and undeclared if it already",
  852. "  existed.  The ARRAY keyword is optional.  Synonym: [ ARRAY ] DCL.",
  853. " ",
  854. "ARRAY SHOW [ arrayname ]",
  855. "  Displays the contents of the given array.  A range specifier can be",
  856. "  included to display a segment of the array, e.g. "array show \&a[1:24].""
  857. ,
  858. "  If the arrayname is omitted, all declared arrays are listed, but their",
  859. "  contents is not shown.  Synonym: SHOW ARRAY.",
  860. " ",
  861. "ARRAY CLEAR arrayname",
  862. "  Clears all elements of the array, i.e. sets them to empty values.",
  863. "  You may include a range specifier to clear a segment of the array rather",
  864. "  than the whole array, e.g. "array clear \%a[22:38]"",
  865. " ",
  866. "ARRAY SET arrayname value",
  867. "  Sets all elements of the array to the given value.  You may specify a",
  868. "  range to set a segment of the array, e.g. "array set \%a[2:9] 0"",
  869. " ",
  870. "ARRAY DESTROY arrayname",
  871. "  Destroys and undeclares the given array.",
  872. " ",
  873. "ARRAY RESIZE arrayname number",
  874. "  Changes the size of the given array, which must already exist, to the",
  875. "  number given.  If the number is smaller than the current size, the extra",
  876. "  elements are discarded; if it is larger, new empty elements are added.",
  877. " ",
  878. "ARRAY COPY array1 array2",
  879. "  Copys array1 to array2.  If array2 has not been declared, it is created",
  880. "  automatically.  Range specifiers may be given on one or both arrays.",
  881. " ",
  882. "[ ARRAY ] SORT [ switches ] array-name [ array2 ]",
  883. "  Sorts the given array lexically according to the switches.  Element 0 of",
  884. "  the array is excluded from sorting by default.  The ARRAY keyword is",
  885. "  optional.  If a second array name is given, that array is sorted according",
  886. "  to the first one.  Switches:",
  887. " ",
  888. "  /CASE:{ON,OFF}",
  889. "    If ON, alphabetic case matters; if OFF it is ignored.  If this switch is",
  890. "    omitted, the current SET CASE setting applies.",
  891. " ",
  892. "  /KEY:number",
  893. "    
  894. Position (1-based column number) at which comparisons begin, 1 by default.",
  895. " ",
  896. "  /NUMERIC",
  897. "    Specifies a numeric rather than lexical sort.",
  898. " ",
  899. "  /RANGE:low[:high]",
  900. "    The range of elements, low through high, to be sorted.  If this switch",
  901. "    is not given, elements 1 through the dimensioned size are sorted.  If",
  902. "    :high is omitted, the dimensioned size is used.  To include element 0 in",
  903. "    a sort, use /RANGE:0 (to sort the whole array) or /RANGE:0:n (to sort",
  904. "    elements 0 through n).  You can use a range specifier in the array name",
  905. "    instead of the /RANGE switch.",
  906. " ",
  907. "  /REVERSE",
  908. "    Sort in reverse order.  If this switch is not given, the array is sorted",
  909. "    in ascending order.",
  910. " ",
  911. "Various functions are available for array operations; see HELP FUNCTION for",
  912. "details.  These include \fdimension(), \farraylook(), \ffiles(), 
  913. \fsplit(),",
  914. "and many more.",
  915. ""};
  916. #endif /* NOSPL */
  917. #ifdef ZCOPY
  918. static char * hmxxcpy[] = {
  919. "Syntax: COPY [ switches ] file1 file2",
  920. "  Copies the source file (file1) to the destination file (file2).  If file2",
  921. "  is a directory, this command copies file1 under its own name to the given",
  922. "  directory.  Only one file at a time may be copied; wildcards are not",
  923. "  supported.  Switches:",
  924. " ",
  925. "  /LIST",
  926. "    Print the filenames and status while copying.  Synonyms: /LOG, /VERBOSE",
  927. " ",
  928. "  /NOLIST",
  929. "    Copy silently (default). Synonyms: /NOLOG, /QUIET",
  930. " ",
  931. "  /SWAP-BYTES",
  932. "    Swap bytes while copying.",
  933. #ifndef NOSPL
  934. " ",
  935. "  /FROMB64",
  936. "    Convert from Base64 encoding while copying.",
  937. " ",
  938. "  /TOB64",
  939. "    Convert to Base64 encoding while copying.",
  940. #endif /* NOSPL */
  941. ""
  942. };
  943. #endif /* ZCOPY */
  944. #ifndef NOFRILLS
  945. static char * hmxxren[] = {
  946. "Syntax: RENAME [ switches ] file1 file2",
  947. "  Renames the source file (file1) to the destination file (file2).  If file2",
  948. "  is a directory, this command moves file1 under its own name to the given",
  949. "  directory.  Only one file at a time may be renamed; wildcards are not",
  950. "  supported.  Switches:",
  951. " ",
  952. "  /LIST",
  953. "    Print the filenames and status while renaming.  Synonyms: /LOG, /VERBOSE",
  954. " ",
  955. "  /NOLIST",
  956. "    Rename silently (default). Synonyms: /NOLOG, /QUIET",
  957. ""
  958. };
  959. #endif /* NOFRILLS */
  960. static char *
  961. cmdlhlp[] = {
  962. "Command-line options are given after the program name in the system",
  963. "command that you use to start C-Kermit.  Example:",
  964. " ",
  965. " kermit -i -s oofa.exe",
  966. " ",
  967. "tells C-Kermit to send (-s) the file oofa.exe in binary (-i) mode.",
  968. " ",
  969. "Command-line options are case-sensitive; "-s" is different from "-S".",
  970. #ifdef VMS
  971. "In VMS, uppercase options must be enclosed in doublequotes: ",
  972. " ",
  973. " $ kermit "-Y" "-S" -s oofa.txt ",
  974. #endif /* VMS */
  975. " ",
  976. "If any "action options" are included on the command line, C-Kermit exits",
  977. "after executing its command-line options.  If -S is included, or no action",
  978. "options were given, C-Kermit enters its interactive command parser and",
  979. "issues its prompt.",
  980. " ",
  981. "Command-line options are single characters preceded by dash (-).  Some",
  982. "require an "argument," others do not.  If an argument contains spaces, it",
  983. "must be enclosed in doublequotes:",
  984. " ",
  985. " kermit -s "filename with spaces"",
  986. " ",
  987. "
  988. An option that does not require an argument can be bundled with other options:"
  989. ,
  990. " ",
  991. " kermit -Qis oofa.exe",
  992. " ",
  993. "Exceptions to the rules:",
  994. " ",
  995. " . If the first command-line option is a filename, Kermit executes commands",
  996. "   from the file.  Additional command-line options can follow the filename.",
  997. " ",
  998. " . The special option "=" (equal sign) or "--" (double hyphen) means to",
  999. "   treat the rest of the command line as data, rather than commands; this",
  1000. "   data is placed in the argument vector array, \&@[], along with the other",
  1001. "   items on the command line, and also in the top-level \%1..\%9 variables."
  1002. ,
  1003. " ",
  1004. #ifdef KERBANG
  1005. " . A similar option "+" (plus sign) means: the name of a Kermit script",
  1006. "   file follows.  This file is to be executed, and its name assigned to \%0",
  1007. "   and \&_[0].  All subsequent command-line arguments are to be ignored by",
  1008. "   Kermit but made available to the script as \%1, \%2, ..., as well as",
  1009. "   in the argument-vector arrays.  The initialization file is not executed",
  1010. "   automatically in this case.",
  1011. " ",
  1012. #endif /* KERBANG */
  1013. " . The -s option can accept multiple filenames, separated by spaces.",
  1014. " ",
  1015. " . the -j and -J options allow an optional second argument, the TCP port",
  1016. "   name or number.",
  1017. " ",
  1018. "Type "help options all" to list all the command-line options.",
  1019. "Type "help option x" to see the help message for option x.",
  1020. " ",
  1021. "C-Kermit also offers a selection of "extended command-line" options.",
  1022. "These begin with two dashes, followed by a keyword, and then, if the option",
  1023. "has arguments, a colon (:) or equal sign (=) followed by the argument.",
  1024. "Unlike single-letter options, extended option keywords aren't case sensitive",
  1025. "and they can be abbreviated to any length that still distinguishes them from",
  1026. "other extended-option keywords.  Example:",
  1027. " ",
  1028. "  kermit --banner:oofa.txt",
  1029. " ",
  1030. "which designates the file oofa.txt to be printed upon startup, rather than",
  1031. "the built-in banner (greeting) text.  To obtain a list of available",
  1032. "extended options, type "help extended-options ?".  To get help about all",
  1033. "extended options, type "help extended-options".  To get help about a",
  1034. "particular extended option, type "help extended-option xxx", where "xxx"",
  1035. "is the option keyword.",
  1036. #ifndef NOIKSD
  1037. " ",
  1038. "At present, most of the extended options apply only to the Internet Kermit",
  1039. "Service Daemon (IKSD).  Type "help iksd" for details.",
  1040. #endif /* NOIKSD */
  1041. " ",
  1042. ""
  1043. };
  1044. #ifndef NOHELP
  1045. int
  1046. doxopts() {
  1047.     extern char * xopthlp[], * xarghlp[];
  1048.     extern struct keytab xargtab[];
  1049.     extern int nxargs;
  1050.     int i, x, y, n = 0;
  1051. #ifdef CK_TTGWSIZ
  1052. #ifdef OS2
  1053.     ttgcwsz();
  1054. #else /* OS2 */
  1055.     /* Check whether window size changed */
  1056.     if (ttgwsiz() > 0) {
  1057.         if (tt_rows > 0 && tt_cols > 0) {
  1058.             cmd_rows = tt_rows;
  1059.             cmd_cols = tt_cols;
  1060.         }
  1061.     }
  1062. #endif /* OS2 */
  1063. #endif /* CK_TTGWSIZ */
  1064.     y = cmkey(xargtab,
  1065.               nxargs,
  1066.               "Extended argument without the "--" prefix",
  1067.               "",
  1068.               xxstring
  1069.               );
  1070.     if (y == -3) {
  1071.         printf("n");
  1072.         for (i = 0; i <= XA_MAX; i++) {
  1073.             if (xopthlp[i]) {
  1074.                 printf("%sn",xopthlp[i]);
  1075.                 printf("   %sn",xarghlp[i]);
  1076.                 printf("n");
  1077.                 n += 3;
  1078.                 if (n > (cmd_rows - 6)) {
  1079.                     if (!askmore())
  1080.                       return(0);
  1081.                     else
  1082.                       n = 0;
  1083.                 }
  1084.             }
  1085.         }
  1086.         return(1);
  1087.     } else if (y < 0)
  1088.       return(y);
  1089.     if ((x = cmcfm()) < 0)
  1090.       return(x);
  1091.     printf("n%sn",xopthlp[y]);
  1092.     printf("   %snn",xarghlp[y]);
  1093.     return(1);
  1094. }
  1095. #ifndef NOCMDL
  1096. int
  1097. dohopts() {
  1098.     int i, n, x, y, z, all = 0, msg = 0;
  1099.     char *s;
  1100.     extern char *opthlp[], *arghlp[];
  1101.     extern int optact[];
  1102.     if ((x = cmtxt("A command-line option character,n
  1103. or the word ALL, or carriage return for an overview",
  1104.                    "", &s, xxstring)) < 0)
  1105.       return(x);
  1106.     if (!*s)
  1107.       msg = 1;
  1108.     else if (!strcmp(s,"all") || (!strcmp(s,"ALL")))
  1109.       all = 1;
  1110.     else if (*s == '-')                 /* Be tolerant of leading hyphen */
  1111.       s++;
  1112.     if (!all && (int)strlen(s) > 1) {
  1113.         printf("?A single character, please, or carriage to list them all.n");
  1114.         return(-9);
  1115.     }
  1116.     if (all) {
  1117.         y = 33;
  1118.         z = 127;
  1119.     } else {
  1120.         y = *s;
  1121.         z = (y == 0) ? 127 : y;
  1122.         if (y == 0) y = 33;
  1123.     }
  1124. #ifdef CK_TTGWSIZ
  1125. #ifdef OS2
  1126.     ttgcwsz();
  1127. #else /* OS2 */
  1128.     /* Check whether window size changed */
  1129.     if (ttgwsiz() > 0) {
  1130.         if (tt_rows > 0 && tt_cols > 0) {
  1131.             cmd_rows = tt_rows;
  1132.             cmd_cols = tt_cols;
  1133.         }
  1134.     }
  1135. #endif /* OS2 */
  1136. #endif /* CK_TTGWSIZ */
  1137.     printf("n");
  1138.     for (i = 0, n = 1; msg != 0 && *cmdlhlp[i]; i++) {
  1139.         printf("%sn",cmdlhlp[i]);
  1140.         if (++n > (cmd_rows - 3)) {
  1141.            if (!askmore())
  1142.              return(0);
  1143.            else
  1144.              n = 0;
  1145.         }
  1146.     }
  1147.     if (all) {
  1148.         printf("The following command-line options are available:nn");
  1149.         n += 2;
  1150.     }
  1151.     for (i = y; msg == 0 && i <= z; i++) {
  1152.         if (!opthlp[i])
  1153.           continue;
  1154.         if (arghlp[i]) {                /* Option with arg */
  1155.             printf(" -%c <arg>%sn",(char)i,(optact[i]?" (action option)":""));
  1156.             printf("     %sn",opthlp[i]);
  1157.             printf("     Argument: %snn",arghlp[i]);
  1158.             x = 4;
  1159.         } else {                        /* Option without arg */
  1160.             printf(" -%c  %s%sn",
  1161.                    (char)i, opthlp[i],
  1162.                    (optact[i]?" (action option)":"")
  1163.                   );
  1164.             printf("     Argument: (none)nn");
  1165.             x = 3;
  1166.         }
  1167.         n += x;
  1168.         if (n > (cmd_rows - x - 1)) {
  1169.             if (!askmore())
  1170.               return(0);
  1171.            else
  1172.               n = 0;
  1173.         }
  1174.     }
  1175.     return(0);
  1176. }
  1177. #endif /* NOCMDL */
  1178. #endif /* NOHELP */
  1179. #ifdef CKCHANNELIO
  1180. static char * hxxfile[] = {
  1181. "Syntax: FILE <subcommand> [ switches ] <channel> [ <data> ]",
  1182. "  Opens, closes, reads, writes, and manages local files.",
  1183. " ",
  1184. "The FILE commands are:",
  1185. " ",
  1186. "  FILE OPEN   (or FOPEN)   -- Open a local file.",
  1187. "  FILE CLOSE  (or FCLOSE)  -- Close an open file.",
  1188. "  FILE READ   (or FREAD)   -- Read data from an open file.",
  1189. "  FILE WRITE  (or FWRITE)  -- Write data to an open file.",
  1190. "  FILE LIST   (or FLIST)   -- List open files.",
  1191. "  FILE STATUS (or FSTATUS) -- Show status of a channel.",
  1192. "  FILE REWIND (or FREWIND) -- Rewind an open file",
  1193. "  FILE COUNT  (or FCOUNT)  -- Count lines or bytes in an open file",
  1194. "  FILE SEEK   (or FSEEK)   -- Seek to specified spot in an open file.",
  1195. "  FILE FLUSH  (or FFLUSH)  -- Flush output buffers for an open file.",
  1196. " ",
  1197. "Type HELP FILE OPEN or HELP FOPEN for details about FILE OPEN;",
  1198. "type HELP FILE CLOSE or HELP FCLOSE for details about FILE CLOSE, and so on.",
  1199. " ",
  1200. "The following variables are related to the FILE command:",
  1201. " ",
  1202. "  \v(f_max)     -- Maximum number of files that can be open at once",
  1203. "  \v(f_error)   -- Completion code of most recent FILE command or function",
  1204. "  \v(f_count)   -- Result of most recent FILE COUNT command",
  1205. " ",
  1206. "The following functions are related to the FILE command:",
  1207. " ",
  1208. "  \F_eof()      -- Check if channel is at EOF",
  1209. "  \F_pos()      -- Get channel read/write position (byte number)",
  1210. "  \F_line()     -- Get channel read/write position (line number)",
  1211. "  \F_handle()   -- Get file handle",
  1212. "  \F_status()   -- Get channel status",
  1213. "  \F_getchar()  -- Read character",
  1214. "  \F_getline()  -- Read line",
  1215. "  \F_getblock() -- Read block",
  1216. "  \F_putchar()  -- Write character",
  1217. "  \F_putline()  -- Write line",
  1218. "  \F_putblock() -- Write block",
  1219. "  \F_errmsg()   -- Error message from most recent FILE command or function",
  1220. " ",
  1221. "Type HELP <function-name> for information about each one.",
  1222. ""
  1223. };
  1224. static char * hxxf_op[] = {
  1225. "Syntax: FILE OPEN [ switches ] <variable> <filename>",
  1226. "  Opens the file indicated by <filename> in the mode indicated by the",
  1227. "  switches, if any, or if no switches are included, in read-only mode, and",
  1228. "  assigns a channel number for the file to the given variable.",
  1229. "  Synonym: FOPEN.  Switches:",
  1230. " ",
  1231. "/READ",
  1232. "  Open the file for reading.",
  1233. " ",
  1234. "/WRITE",
  1235. "  Open the file for writing.  If /READ was not also specified, this creates",
  1236. "  a new file.  If /READ was specifed, the existing file is preserved, but",
  1237. "  writing is allowed.  In both cases, the read/write pointer is initially",
  1238. "  at the beginning of the file.",
  1239. " ",
  1240. "/APPEND",
  1241. "  If the file does not exist, create a new file and open it for writing.",
  1242. "  If the file exists, open it for writing, but with the write pointer",
  1243. "  positioned at the end.",
  1244. " ",
  1245. "/BINARY",
  1246. #ifdef VMS
  1247. "  Opens the file in binary mode to inhibit end-of-line conversions.",
  1248. #else
  1249. #ifdef OS2
  1250. "  Opens the file in binary mode to inhibit end-of-line conversions.",
  1251. #else
  1252. #ifdef UNIX
  1253. "  This option is ignored in UNIX.",
  1254. #else
  1255. "  This option is ignored on this platform.",
  1256. #endif /* UNIX */
  1257. #endif /* OS2 */
  1258. #endif /* VMS */
  1259. "Switches can be combined in an way that makes sense and is supported by the",
  1260. "underlying operating system.",
  1261. ""
  1262. };
  1263. static char * hxxf_cl[] = {
  1264. "Syntax: FILE CLOSE <channel>",
  1265. "  Closes the file on the given channel if it was open.",
  1266. "  Also see HELP FILE OPEN.  Synonym: FCLOSE.",
  1267. ""
  1268. };
  1269. static char * hxxf_fl[] = {
  1270. "Syntax: FILE FLUSH <channel>",
  1271. "  Flushes output buffers on the given channel if it was open, forcing",
  1272. "  all material previously written to be committed to disk.  Synonym: FFLUSH.",
  1273. "  Also available as \F_flush().",
  1274. ""
  1275. };
  1276. static char * hxxf_li[] = {
  1277. "Syntax: FILE LIST",
  1278. "  Lists the channel number, name, modes, and position of each file opened",
  1279. "  with FILE OPEN.  Synonym: FLIST.",
  1280. ""
  1281. };
  1282. static char * hxxf_re[] = {
  1283. "Syntax: FILE READ [ switches ] <channel> [ <variable> ]",
  1284. "  Reads data from the file on the given channel number into the <variable>,",
  1285. "  if one was given; if no variable was given, the result is printed on",
  1286. "  the screen.  The variable should be a macro name rather than a \%x",
  1287. "  variable or array element if you want backslash characters in the file to",
  1288. "  be taken literally.  Synonym: FREAD.  Switches:",
  1289. " ",
  1290. "/LINE",
  1291. "  Specifies that a line of text is to be read.  A line is defined according",
  1292. "  to the underlying operating system's text-file format.  For example, in",
  1293. "  UNIX a line is a sequence of characters up to and including a linefeed.",
  1294. "  The line terminator (if any) is removed before assigning the text to the",
  1295. "  variable.  If no switches are included with the FILE READ command, /LINE",
  1296. "  is assumed.",
  1297. " ",
  1298. "/SIZE:number",
  1299. "  Specifies that the given number of bytes (characters) is to be read.",
  1300. "  This gives a semblance of "record i/o" for files that do not necessarily",
  1301. "  contain lines.  The resulting block of characters is assigned to the",
  1302. "  variable without any editing.",
  1303. " ",
  1304. "/CHARACTER",
  1305. "  Equivalent to /SIZE:1.  If FILE READ /CHAR succeeds but the <variable> is",
  1306. "  empty, this indicates a NUL byte was read.",
  1307. " ",
  1308. "Synonym: FREAD.",
  1309. "Also available as \F_getchar(), \F_getline(), \F_getblock().",
  1310. ""
  1311. };
  1312. static char * hxxf_rw[] = {
  1313. "Syntax: FILE REWIND <channel>",
  1314. "  If the channel is open, moves the read/write pointer to the beginning of",
  1315. "  the file.  Equivalent to FILE SEEK <channel> 0.  Synonym: FREWIND.",
  1316. "  Also available as \F_rewind().",
  1317. ""
  1318. };
  1319. static char * hxxf_se[] = {
  1320. "Syntax: FILE SEEK [ switches ] <channel> { [{+,-}]<number>, EOF }",
  1321. "  Switches are /BYTE, /LINE, /RELATIVE, ABSOLUTE.",
  1322. "  Moves the file pointer for this file to the given position in the",
  1323. "  file.  Subsequent FILE READs or WRITEs will take place at that position.",
  1324. "  If neither the /RELATIVE nor /ABSOLUTE switch is given, an unsigned",
  1325. "  <number> is absolute; a signed number is relative.  EOF means to move to",
  1326. "  the end of the file.  Synonym: FSEEK.  Also available as \F_seek().",
  1327. ""
  1328. };
  1329. static char * hxxf_st[] = {
  1330. "Syntax: FILE STATUS <channel>",
  1331. "  If the channel is open, this command shows the name of the file, the",
  1332. "  switches it was opened with, and the current read/write position.",
  1333. "  Synonym: FSTATUS",
  1334. ""
  1335. };
  1336. static char * hxxf_co[] = {
  1337. "Syntax: FILE COUNT [ { /BYTES, /LINES, /LIST, /NOLIST } ] <channel>",
  1338. "  If the channel is open, this command prints the nubmer of bytes (default)",
  1339. "  or lines in the file if at top level or if /LIST is included; if /NOLIST",
  1340. "  is given, the result is not printed.  In all cases the result is assigned",
  1341. "  to \v(f_count).  Synonym: FCOUNT",
  1342. ""
  1343. };
  1344. static char * hxxf_wr[] = {
  1345. "FILE WRITE [ switches ] <channel> <text>",
  1346. "  Writes the given text to the file on the given channel number.  The <text>",
  1347. "  can be literal text or a variable, or any combination.  If the text might",
  1348. "  contain leading or trailing spaces, it must be enclosed in braces if you",
  1349. "  want to preserve them.  Synonym: FWRITE.  Switches:",
  1350. " ",
  1351. "/LINE",
  1352. "  Specifies that an appropriate line terminator is to be added to the",
  1353. "  end of the <text>.  If no switches are included, /LINE is assumed.",
  1354. " ",
  1355. "/SIZE:number",
  1356. "  Specifies that the given number of bytes (characters) is to be written.",
  1357. "  If the given <text> is longer than the requested size, it is truncated;",
  1358. "  if is shorter, it is padded according /LPAD and /RPAD switches.  Synonym:",
  1359. "  /BLOCK.",
  1360. " ",
  1361. "/LPAD[:value]",
  1362. "  If /SIZE was given, but the <text> is shorter than the requested size,",
  1363. "  the text is padded on the left with sufficient copies of the character",
  1364. "  whose ASCII value is given to write the given length.  If no value is",
  1365. "  specified, 32 (the code for Space) is used.  The value can also be 0 to",
  1366. "  write the indicated number of NUL bytes.  If /SIZE was not given, this",
  1367. "  switch is ignored.",
  1368. " ",
  1369. "/RPAD[:value]",
  1370. "  Like LPAD, but pads on the right.",
  1371. " ",
  1372. "/STRING",
  1373. "  Specifies that the <text> is to be written as-is, with no terminator added."
  1374. ,
  1375. " ",
  1376. "/CHARACTER",
  1377. "  Specifies that one character should be written.  If the <text> is empty or",
  1378. "  not given, a NUL character is written; otherwise the first character of",
  1379. "  <text> is given.",
  1380. " ",
  1381. "Synonym FWRITE.",
  1382. "Also available as \F_putchar(), \F_putline(), \F_putblock().",
  1383. ""
  1384. };
  1385. static int
  1386. dohfile(cx) int cx; {
  1387.     extern struct keytab fctab[];
  1388.     extern int nfctab;
  1389.     int x;
  1390.     if (cx == XXFILE) { /* FILE command was given */
  1391. /* Get subcommand */
  1392. if ((cx = cmkey(fctab,nfctab,"Operation","",xxstring)) < 0) {
  1393.     if (cx == -3) {
  1394.                 if ((x = cmcfm()) < 0)
  1395.                   return(x);
  1396.                 cx = XXFILE;
  1397.     } else
  1398.               return(cx);
  1399. }
  1400.         if ((x = cmcfm()) < 0)
  1401.           return(x);
  1402. switch (cx) {
  1403.   case FIL_CLS: cx = XXF_CL; break;
  1404.   case FIL_FLU: cx = XXF_FL; break;
  1405.   case FIL_LIS: cx = XXF_LI; break;
  1406.   case FIL_OPN: cx = XXF_OP; break;
  1407.   case FIL_REA: cx = XXF_RE; break;
  1408.   case FIL_REW: cx = XXF_RW; break;
  1409.   case FIL_SEE: cx = XXF_SE; break;
  1410.   case FIL_STA: cx = XXF_ST; break;
  1411.   case FIL_WRI: cx = XXF_WR; break;
  1412.   case FIL_COU: cx = XXF_CO; break;
  1413. }
  1414.     }
  1415.     switch (cx) {
  1416.       case XXFILE: return(hmsga(hxxfile));
  1417.       case XXF_CL: return(hmsga(hxxf_cl));
  1418.       case XXF_FL: return(hmsga(hxxf_fl));
  1419.       case XXF_LI: return(hmsga(hxxf_li));
  1420.       case XXF_OP: return(hmsga(hxxf_op));
  1421.       case XXF_RE: return(hmsga(hxxf_re));
  1422.       case XXF_RW: return(hmsga(hxxf_rw));
  1423.       case XXF_SE: return(hmsga(hxxf_se));
  1424.       case XXF_ST: return(hmsga(hxxf_st));
  1425.       case XXF_WR: return(hmsga(hxxf_wr));
  1426.       case XXF_CO: return(hmsga(hxxf_co));
  1427.       default:
  1428.         return(-2);
  1429.     }
  1430. }
  1431. #endif /* CKCHANNELIO */
  1432. int
  1433. dohlp(xx) int xx; {
  1434.     int x,y;
  1435.     debug(F101,"DOHELP xx","",xx);
  1436.     if (xx < 0) return(xx);
  1437. #ifdef NOHELP
  1438.     if ((x = cmcfm()) < 0)
  1439.       return(x);
  1440.     printf("n%s, Copyright (C) 1985, 2000,",versio);
  1441.     return(hmsga(tophlp));
  1442. #else /* help is available */
  1443.     if (helpfile)
  1444.       return(dotype(helpfile,xaskmore,0,0,NULL,0,NULL));
  1445. #ifdef CKCHANNELIO
  1446.     if (xx == XXFILE)
  1447.       return(dohfile(xx));
  1448.     else if (xx == XXF_RE || xx == XXF_WR || xx == XXF_OP ||
  1449.      xx == XXF_CL || xx == XXF_SE || xx == XXF_RW ||
  1450.      xx == XXF_FL || xx == XXF_LI || xx == XXF_ST || xx == XXF_CO)
  1451.       return(dohfile(xx));
  1452. #endif /* CKCHANNELIO */
  1453.     switch (xx) {
  1454. #ifndef NOSPL
  1455. case XXASS:                             /* ASSIGN */
  1456.     return(hmsga(hxxass));
  1457. case XXASK:                             /* ASK */
  1458.     return(hmsga(hxxask));
  1459. case XXASKQ:
  1460.     return(hmsga(hxxaskq));
  1461. case XXAPC:
  1462.     return(hmsg("Syntax: APC textn
  1463.   Echoes the text within a VT220/320/420 Application Program Command."));
  1464. #endif /* NOSPL */
  1465. #ifndef NOFRILLS
  1466. case XXBUG:
  1467.     return(hmsg("Describes how to get technical support."));
  1468. #endif /* NOFRILLS */
  1469. #ifndef NOSPL
  1470. case XXBEEP:
  1471. #ifdef OS2
  1472.     return(hmsg("Syntax: BEEP [ { ERROR, INFORMATION, WARNING } ]n
  1473.   Generates a bell according to the current settings.  If SET BELL is set ton
  1474.   "system-sounds" then the appropriate System Sound will be generated.n
  1475.   Default is INFORMATION."));
  1476. #else /* OS2 */
  1477.     return(hmsg("Syntax: BEEPn
  1478. Sends a BEL character to your terminal."));
  1479. #endif /* OS2 */
  1480. #endif /* NOSPL */
  1481. case XXBYE:                             /* BYE */
  1482.     return(hmsg(hmxxbye));
  1483. case XXCHK:                             /* check */
  1484.     return(hmsg("
  1485. Syntax: CHECK namen
  1486.   Checks
  1487.   to see if the named feature is included in this version of C-Kermit.n
  1488.   To list the features you can check, type "check ?"."));
  1489. #ifndef NOFRILLS
  1490. case XXCLE:                             /* clear */
  1491.     return(hmsga(hmxxcle));
  1492. #endif /* NOFRILLS */
  1493. case XXCLO:                             /* close */
  1494.     return(hmsga(hmxxclo));
  1495. case XXCOM:                             /* comment */
  1496. #ifndef STRATUS /* Can't use # for comments in Stratus VOS */
  1497.     return(hmsg("
  1498. Syntax: COMMENT textn
  1499. Example: COMMENT - this is a comment.n
  1500.   Introduces a comment.  Beginning of command line only.  Commands may alson
  1501.   have trailing comments, introduced by ; or #."));
  1502. #else
  1503.     return(hmsg("
  1504. Syntax: COMMENT textn
  1505. Example: COMMENT - this is a comment.n
  1506.   Introduces a comment.  Beginning of command line only.  Commands may alson
  1507.   have trailing comments, introduced by ; (semicolon)."));
  1508. #endif /* STRATUS */
  1509. #ifndef NOLOCAL
  1510. case XXCON:                             /* CONNECT */
  1511. case XXCQ:                              /* CQ == CONNECT /QUIETLY */
  1512.     hmsga(hmxxcon);
  1513.     printf("Your escape character is Ctrl-%c (ASCII %d, %s)rn",
  1514.            ctl(escape), escape, (escape == 127 ? "DEL" : ccntab[escape]));
  1515.     return(0);
  1516. #endif /* NOLOCAL */
  1517. #ifdef ZCOPY
  1518. case XXCPY:
  1519.     return(hmsga(hmxxcpy));
  1520. #endif /* ZCOPY */
  1521. #ifdef NOFRILLS
  1522. case XXREN:
  1523.     return(hmsga(hmxxren));
  1524. #endif /* NOFRILLS */
  1525. case XXCWD:                             /* CD / CWD */
  1526. #ifdef vms
  1527.     return(hmsg("Syntax: CD [ directory or device:directory ]n
  1528.   Change Working Directory, equivalent to VMS SET DEFAULT command"));
  1529. #else
  1530. #ifdef datageneral
  1531.     return(hmsg("Change Working Directory, equivalent to DG 'dir' command"));
  1532. #else
  1533. #ifdef OS2
  1534.   return(hmsg("Syntax: CD [ directoryname ]n
  1535.   Change Directory.  If directoryname is not specified, changes to directoryn
  1536.   specified by HOME environment variable, if any.  Also see HELP SET CD"));
  1537. #else
  1538.     return(hmsg("Syntax: CD [ directoryname ]n
  1539.   Change Directory.  If directory name omitted, changes to your homen
  1540.   directory.  Also see HELP SET CD."));
  1541. #endif /* OS2 */
  1542. #endif /* datageneral */
  1543. #endif /* vms */
  1544. #ifndef NOSPL
  1545. case XXARRAY:
  1546. case XXDCL: /* DECLARE */
  1547. case XXSORT:
  1548.     return(hmsga(hxxdcl));
  1549. case XXDEF:                             /* DEFINE */
  1550.     return(hmsga(hxxdef));
  1551. case XXUNDEF:                           /* UNDEFINE */
  1552.     return(hmsg("Syntax:  UNDEFINE variable-namen
  1553.   Undefines a macro or variable."));
  1554. #endif /* NOSPL */
  1555. #ifndef NOFRILLS
  1556. case XXDEL:                             /* delete */
  1557.     return(hmsga(hmxxdel));
  1558. #endif /* NOFRILLS */
  1559. #ifndef NODIAL
  1560. case XXDIAL:                            /* DIAL, etc... */
  1561.     return(hmsga(hxxdial));
  1562. case XXPDIA:                            /* PDIAL */
  1563.     return(hmsg("Syntax: PDIAL phonenumbern
  1564.   Partially dials a phone number.  Like DIAL but does not wait for carriern
  1565.   or CONNECT message."));
  1566. case XXRED:
  1567.     return(hmsg("Redial the number given in the most recent DIAL commnd."));
  1568. case XXANSW:                            /* ANSWER */
  1569.     return(hmsga(hxxansw));
  1570. case XXLOOK:                            /* LOOKUP number in directory */
  1571.     return(hmsga(hxxlook));
  1572. #endif /* NODIAL */
  1573. case XXDIR:                             /* DIRECTORY */
  1574.     return(hmsga(hmxxdir));
  1575. case XXLS:
  1576. #ifdef UNIXOROSK
  1577.     return(hmsg("Syntax: LS [ args ]n
  1578.   Runs "ls" with the given arguments."));
  1579. #else
  1580.     return(hmsga(hmxxdir));
  1581. #endif /* UNIXOROSK */
  1582. #ifndef NOSERVER
  1583. #ifndef NOFRILLS
  1584. case XXDIS:
  1585.     return(hmsg("Syntax: DISABLE commandn
  1586.   Security for the C-Kermit server.  Prevents the client Kermit program fromn
  1587.   executing the named REMOTE command, such as CD, DELETE, RECEIVE, etc."));
  1588. #endif /* NOFRILLS */
  1589. #endif /* NOSERVER */
  1590. #ifndef NOSPL
  1591. case XXDO:                              /* do */
  1592.     return(hmsg("Syntax: [ DO ] macroname [ arguments ]n
  1593.   Executes a macro that was defined with the DEFINE command.  The word DOn
  1594.   can be omitted.  Trailing argument words, if any, are automaticallyn
  1595.   assigned to the macro argument variables \%1 through \%9."));
  1596. #endif /* NOSPL */
  1597. #ifndef NOSPL
  1598. case XXDEC:
  1599.     return(hmsga(hxxdec));
  1600. #endif /* NOSPL */
  1601. case XXECH:                             /* echo */
  1602.     return(hmsg("Syntax: ECHO textn
  1603.   Displays the text on the screen, followed by a line terminator.  The ECHOn
  1604.   text may contain backslash codes.  Example: ECHO \7Wake up!\7.  Also seen
  1605.   XECHO and WRITE SCREEN."));
  1606. case XXXECH:                            /* xecho */
  1607.     return(hmsg("Syntax: XECHO textn
  1608.   Just like ECHO but does not add a line terminator to the text.  See ECHO."));
  1609. #ifndef NOSERVER
  1610. #ifndef NOFRILLS
  1611. case XXENA:
  1612.     return(hmsg("Syntax: ENABLE capabilityn
  1613.   For use with server mode.  Allows the client Kermit program access to then
  1614.   named capability, such as CD, DELETE, RECEIVE, etc.  Opposite of DISABLE."));
  1615. #endif /* NOFRILLS */
  1616. #endif /* NOSERVER */
  1617. #ifndef NOSPL
  1618. case XXEND:                             /* end */
  1619.     return(hmsg("Syntax: END [ number [ message ] ]n
  1620.   Exits from the current macro or TAKE file, back to wherever invoked from.n
  1621.   Number is return code.  Message, if given, is printed."));
  1622. case XXEVAL:                            /* evaluate */
  1623.     return(hmsga(hmxxeval));
  1624. #endif /* NOSPL */
  1625. #ifndef NOFRILLS
  1626. case XXERR:                             /* e-packet */
  1627.     return(hmsg("Syntax: E-PACKETn
  1628.   Sends an Error packet to the other Kermit."));
  1629. #endif /* NOFRILLS */
  1630. case XXEXI:                             /* exit */
  1631. case XXQUI:
  1632.     return(hmsg("Syntax: QUIT (or EXIT) [ number ]n
  1633.   Exits from the Kermit program, closing all open files and devices,n
  1634.   optionally setting the program's return code to the given number.  Alson
  1635.   see SET EXIT."));
  1636. case XXFIN:
  1637.     return(hmsg("Syntax: FINISHn
  1638.   Tells the remote Kermit server to shut down without logging out."));
  1639. #ifndef NOSPL
  1640.   case XXFOR:
  1641.     return(hmsga(forhlp));
  1642. #endif /* NOSPL */
  1643.   case XXGET:
  1644.     return(hmsga(hmxxget));
  1645.   case XXMGET:
  1646.     return(hmsga(hmxxmget));
  1647. #ifndef NOSPL
  1648. #ifndef NOFRILLS
  1649.   case XXGOK:
  1650.     return(hmsg("Syntax: GETOK promptn
  1651.   Prints the prompt, makes user type 'yes', 'no', or 'ok', and sets SUCCESSn
  1652.   or FAILURE accordingly.  Also see SET ASK-TIMER."));
  1653. #endif /* NOFRILLS */
  1654. #endif /* NOSPL */
  1655. #ifndef NOSPL
  1656.   case XXGOTO:
  1657.     return(hmsg("Syntax: GOTO labeln
  1658.   In a TAKE file or macro, go to the given label.  A label is a word on then
  1659.   left margin that starts with a colon (:).  Example:nn
  1660.   :oofan
  1661.   echo Hello!n
  1662.   goto oofa"));
  1663. #endif /* NOSPL */
  1664.   case XXHAN:
  1665.     return(hmsg("Syntax: HANGUPn
  1666. Hang up the phone or network connection."));
  1667.   case XXHLP:
  1668. /*
  1669.   We get confirmation here, even though we do it again in hmsga(), to prevent
  1670.   the Copyright message from being printed prematurely.  This doesn't do any
  1671.   harm, because the first call to cmcfm() sets cmflgs to 1, making the second
  1672.   call return immediately.
  1673. */
  1674.     if ((x = cmcfm()) < 0)
  1675.       return(x);
  1676.     if (helpfile) {
  1677.         printf("n%s, Copyright (C) 1985, 2000,n
  1678. Trustees of Columbia University in the City of New York.nn",versio);
  1679.         return(dotype(helpfile,xaskmore,3,0,NULL,0,NULL));
  1680.     } else {
  1681.         printf("n%s, Copyright (C) 1985, 2000,",versio);
  1682.         return(hmsga(tophlp));
  1683.     }
  1684. case XXINT:
  1685.     return(hmsg("Give a brief introduction to C-Kermit."));
  1686. #ifndef NOSPL
  1687. case XXIF:
  1688.     return(hmsga(ifhlp));
  1689. case XXINC:
  1690.     return(hmsga(hxxinc));
  1691. case XXINP:
  1692.    return(hmsga(hxxinp));
  1693. #endif /* NOSPL */
  1694. #ifdef CK_MINPUT
  1695. case XXMINP:
  1696.     return(hmsga(hmxxminp));
  1697. #endif /* CK_MINPUT */
  1698. #ifndef NOSPL
  1699. case XXREI:
  1700.     return(hmsg("Syntax: REINPUT n stringn
  1701.   Looks for the string in the text that has recently been INPUT, set SUCCESSn
  1702.   or FAILURE accordingly.  Timeout, n, must be specified but is ignored."));
  1703. #endif /* NOSPL */
  1704. #ifndef NOFRILLS
  1705. case XXREN:
  1706.     return(hmsga(hmxxren));
  1707. #endif /* NOFRILLS */
  1708. #ifndef NOSPL
  1709. case XXLBL:
  1710.     return(hmsg("
  1711.   Introduces a label, like :loop, for use with GOTO in TAKE files or macros.n
  1712. See GOTO."));
  1713. #endif /* NOSPL */
  1714. case XXLOG:
  1715.     return(hmsga(hmxxlg));
  1716. #ifndef NOSCRIPT
  1717. case XXLOGI:
  1718.     return(hmsga(hmxxlogi));
  1719. #endif
  1720. #ifndef NOFRILLS
  1721. case XXMAI:
  1722.     return(hmsg("Syntax: MAIL filename addressn
  1723.   Equivalent to SEND /MAIL /ADDRESS:xxx filename."));
  1724. #endif /* NOFRILLS */
  1725. #ifndef NOMSEND
  1726. case XXMSE:
  1727.     return(hmsga(hmxxmse));
  1728. case XXADD:
  1729.     return(hmsga(hmxxadd));
  1730. case XXMMOVE:
  1731.     return(hmsg("MMOVE is exactly like MSEND, except each file that isn
  1732. sent successfully is deleted after it is sent."));
  1733. #endif /* NOMSEND */
  1734. #ifndef NOSPL
  1735. case XXOPE:
  1736.     return(hmsga(openhlp));
  1737. #endif /* NOSPL */
  1738. case XXNEW:
  1739.     return(hmsg(
  1740. "  Prints news of new features since publication of "Using C-Kermit"."));
  1741. case XXUPD:
  1742.     return(hmsg(
  1743. "  New features are described in the file DOCS\UPDATES.TXT."));
  1744. #ifndef NOSPL
  1745. case XXOUT:
  1746.     return(hmsga(hxxout));
  1747. #endif /* NOSPL */
  1748. #ifdef ANYX25
  1749. #ifndef IBMX25
  1750. case XXPAD:
  1751.     return(hmsga(hxxpad));
  1752. #endif /* IBMX25 */
  1753. #endif /* ANYX25 */
  1754. #ifndef NOSPL
  1755. case XXPAU:
  1756.     return(hmsga(hxxpau));
  1757. case XXMSL:
  1758.     return(hmsga(hxxmsl));
  1759. #endif /* NOSPL */
  1760. #ifdef TCPSOCKET
  1761. case XXPNG:
  1762.     return(hmsg("Syntax: PING [ IP-hostname-or-number ]n
  1763.   Checks if the given IP network host is reachable.  Default host is fromn
  1764.   most recent SET HOST or TELNET command.  Runs system PING program, if any.")
  1765.            );
  1766. case XXFTP:
  1767.     return(hmsg("Syntax: FTP [ IP-hostname-or-number ]n
  1768.   Makes an FTP connection to the given IP host or, if no host specified, ton
  1769.   the current host.  Uses the system's FTP program, if any."));
  1770. #endif /* TCPSOCKET */
  1771. #ifndef NOFRILLS
  1772. case XXPRI:
  1773. #ifdef UNIX
  1774.     return(hmsg("Syntax: PRINT file [ options ]n
  1775.   Prints the local file on a local printer with the given options.  Also seen
  1776.   HELP SET PRINTER."));
  1777. #else
  1778. #ifdef VMS
  1779.     return(hmsg("Syntax: PRINT file [ options ]n
  1780.   Prints the local file on a local printer with the given options.  Also seen
  1781.   HELP SET PRINTER."));
  1782. #else
  1783.     return(hmsg("Syntax: PRINT filen
  1784.   Prints the local file on a local printer.  Also see HELP SET PRINTER."));
  1785. #endif /* UNIX */
  1786. #endif /* VMS */
  1787. #endif /* NOFRILLS */
  1788. case XXPWD:
  1789.     return(hmsg("Syntax: PWDn
  1790. Print the name of the current working directory."));
  1791. #ifndef NOSPL
  1792. case XXREA:
  1793.     return(hmsg("Syntax: READ variablenamen
  1794.   Reads a line from the currently open READ or !READ file into the variablen
  1795.   (see OPEN)."));
  1796. #endif /* NOSPL */
  1797. #ifndef NOXFER
  1798. case XXREC:
  1799.     return(hmsga(hmxxrc));
  1800. case XXREM:
  1801.     y = cmkey(remcmd,nrmt,"Remote command","",xxstring);
  1802.     return(dohrmt(y));
  1803. #endif /* NOXFER */
  1804. #ifndef NOSPL
  1805. case XXRET:
  1806.     return(hmsg("Syntax: RETURN [ value ]n
  1807.   Return from a macro.  An optional return value can be given for use withn
  1808.   \fexecute(macro), which allows macros to be used like functions."));
  1809. #endif /* NOSPL */
  1810. #ifndef NOXFER
  1811. case XXSEN:
  1812.     return(hmsga(hmxxsen));
  1813. case XXMOVE:
  1814.     return(hmsg("MOVE is exactly like SEND, except each file that isn
  1815. sent successfully is deleted after it is sent."));
  1816. #ifndef NORESEND
  1817. case XXRSEN:
  1818.     return(hmsg(hmxxrsen));
  1819. case XXREGET:
  1820.     return(hmsg(hmxxrget));
  1821. case XXPSEN:
  1822.     return(hmsg(hmxxpsen));
  1823. #endif /* NORESEND */
  1824. #ifndef NOSERVER
  1825. case XXSER:
  1826.     return(hmsg(hmxxser));
  1827. #endif /* NOSERVER */
  1828. #endif /* NOXFER */
  1829. #ifndef NOJC
  1830. case XXSUS:
  1831.     return(hmsg("Syntax: SUSPEND or Zn
  1832.   Suspends Kermit.  Continue Kermit with the appropriate system command,n
  1833.   such as fg."));
  1834. #endif /* NOJC */
  1835. case XXSET:
  1836.     y = cmkey(prmtab,nprm,"Parameter","",xxstring);
  1837.     debug(F101,"HELP SET y","",y);
  1838.     return(dohset(y));
  1839. #ifndef NOPUSH
  1840. case XXSHE:
  1841.     if (nopush) {
  1842.         if ((x = cmcfm()) < 0) return(x);
  1843.         printf("Sorry, help not available for "%s"n",cmdbuf);
  1844.         break;
  1845.     } else
  1846.        return(hmsga(hxxshe));
  1847. #ifdef CK_REDIR
  1848. case XXFUN:
  1849.     return(hmsg("Syntax: REDIRECT commandn
  1850.   Runs the given local command with its standard input and output redirectedn
  1851.   to the current SET LINE or SET HOST communications path.n
  1852.   Synonym: < (Left angle bracket)."));
  1853. #endif /* CK_REDIR */
  1854. #ifdef CK_REXX
  1855. case XXREXX:
  1856.     return(hmsg("Syntax: REXX textn
  1857.   The text is a Rexx command to be executed. The \v(rexx) variable is setn
  1858.   to the Rexx command's return value.n
  1859.   To execute a rexx program file, use:  REXX call <filename>n
  1860.   Rexx programs may call C-Kermit functions by placing the C-Kermit commandn
  1861.   in single quotes.  For instance:  'set parity none'."));
  1862. #endif /* CK_REXX */
  1863. #endif /* NOPUSH */
  1864. #ifndef NOSHOW
  1865. case XXSHO:
  1866.     return(hmsg("
  1867.   Display current values of various items (SET parameters, variables, etc).n
  1868.   Type SHOW ? for a list of categories."));
  1869. #endif /* NOSHOW */
  1870. case XXSPA:
  1871. #ifdef datageneral
  1872.     return(hmsg("
  1873.   Display disk usage in current device, directory,n
  1874.   or return space for a specified device, directory."));
  1875. #else
  1876.     return(hmsg("Syntax: SPACEn
  1877.   Display disk usage in current device and/or directory"));
  1878. #endif
  1879. case XXSTA:
  1880.     return(hmsg("Syntax: STATISTICS [/BRIEF]n
  1881.   Display statistics about most recent file transfer"));
  1882. #ifndef NOSPL
  1883. case XXSTO:
  1884.     return(hmsg("Syntax: STOP [ number [ message ] ]n
  1885.   Stop executing the current macro or TAKE file and return immediately ton
  1886.   the C-Kermit prompt.  Number is a return code.  Message printed if given."));
  1887. #endif /* NOSPL */
  1888. case XXTAK:
  1889.     return(hmsg("Syntax: TAKE filenamen
  1890.   Take Kermit commands from the named file.  Kermit command files mayn
  1891.   themselves contain TAKE commands, up to a reasonable depth of nesting."));
  1892. #ifdef TCPSOCKET
  1893. #ifdef TNCODE
  1894. case XXTEL:
  1895.     return(hmsga(hmxxtel));
  1896. case XXTELOP:
  1897.     return(hmsga(hxtopt));
  1898. #endif /* TNCODE */
  1899. #ifdef RLOGCODE
  1900. case XXRLOG:
  1901.     return(hmsg("Syntax: RLOGIN [ switches ] [ host [ username ] ]n
  1902.   Equivalent to SET NETWORK TYPE TCP/IP, SET HOST host [ service ] /RLOGIN,n
  1903.   IF SUCCESS CONNECT.  If host is omitted, the previous connection (if any)n
  1904.   is resumed.  Depending on how Kermit has been built switches may ben
  1905.   available to require Kerberos authentication and DES encryption."));
  1906. #endif /* RLOGCODE */
  1907. #endif /* TCPSOCKET */
  1908. #ifndef NOXMIT
  1909. case XXTRA:
  1910.     return(hmsga(hxxxmit));
  1911. #endif /* NOXMIT */
  1912. #ifndef NOFRILLS
  1913. case XXTYP:
  1914.     return(hmsga(hmxxtyp));
  1915. #endif /* NOFRILLS */
  1916. #ifndef NOSPL
  1917. case XXWHI:
  1918.     return(hmsga(whihlp));
  1919. case XXSWIT:
  1920.     return(hmsga(swihlp));
  1921. #endif /* NOSPL */
  1922. #ifndef NOCSETS
  1923. case XXXLA:
  1924.     return(hmsga(hxxxla));
  1925. #endif /* NOCSETS */
  1926. case XXVER:
  1927.     return(hmsg("Syntax: VERSIONnDisplays the program version number."));
  1928. #ifndef NOSPL
  1929. case XXWAI:
  1930.     return(hmsga(hxxwai));
  1931. #endif /* NOSPL */
  1932. #ifndef NOFRILLS
  1933. case XXWHO:
  1934.     return(hmsg("Syntax: WHO [ user ]nDisplays info about the user."));
  1935. case XXWRI:
  1936.     return(hmsga(hxxwri));
  1937. case XXWRL:
  1938.     return(hmsg(
  1939. "WRITE-LINE (WRITELN) is just like WRITE, but includes a line terminatorn
  1940. at the end of text.  See WRITE."));
  1941. #endif /* NOFRILLS */
  1942. #ifndef NOSPL
  1943. case XXIFX:
  1944.     return(hmsga(ifxhlp));
  1945. case XXGETC:                            /* GETC */
  1946.     return(hmsga(hxxgetc));
  1947. case XXFWD:                             /* FORWARD */
  1948.     return(hmsg(
  1949. "Like GOTO, but searches only forward for the label.  See GOTO."));
  1950. case XXLOCAL:                           /* LOCAL */
  1951.     return(hmsg(
  1952. "Declares a variable to be local to the current macro or command file."));
  1953. #endif /* NOSPL */
  1954. case XXVIEW:
  1955.     return(hmsg(
  1956. "View the terminal emulation screen even when there is no connection."));
  1957. case XXASC:
  1958.     return(hmsg("Synonym for SET FILE TYPE TEXT."));
  1959. case XXBIN:
  1960.     return(hmsg("Synonym for SET FILE TYPE BINARY."));
  1961. case XXDATE:
  1962.     return(hmsga(hmxxdate));
  1963. case XXRETR:
  1964.     return(hmsg(
  1965. "Just like GET but asks the server to delete each file that has beenn
  1966. sent successfully."));
  1967. case XXEIGHT:
  1968.     return(hmsg(
  1969. "Equivalent to SET PARITY NONE, SET COMMAND BYTE 8, SET TERMINAL BYTE 8."));
  1970. case XXSAVE:
  1971.     return(hmsg("Syntax: SAVE KEYMAP <file>n
  1972. Saves current keymap definitions to file, "keymap.ini" by default."));
  1973. #ifndef NOFRILLS
  1974. #ifndef NOPUSH
  1975. case XXEDIT:
  1976.     return(hmsg("Syntax: EDIT [ <file> ]n
  1977. Starts your preferred editor on the given file, or if none given, the mostn
  1978. recently edited file, if any.  Also see SET EDITOR."));
  1979. #endif /* NOPUSH */
  1980. #endif /* NOFRILLS */
  1981. #ifdef BROWSER
  1982. case XXBROWS:
  1983.     return(hmsg("Syntax: BROWSE [ <url> ]n
  1984. Starts your preferred Web browser on the given URL, or if none given, then
  1985. most recently visited URL, if any.  Also see SET BROWSER."));
  1986. #endif /* BROWSER */
  1987. #ifdef CK_TAPI
  1988. case XXTAPI:
  1989.     return(hmsga(hxxtapi));
  1990. #endif /* CK_TAPI */
  1991. #ifdef PIPESEND
  1992. case XXCSEN:
  1993.     return(hmsg("Syntax: CSEND [ switches ] <command> [ <as-name> ]n
  1994. Sends from the given <command> rather than from a file.  Equivalent ton
  1995. SEND /COMMAND; see HELP SEND for details."));
  1996. case XXCREC:
  1997.     return(hmsg("Syntax: CRECEIVE [ switches ] <command>n
  1998. Receives to the given <command> rather than to a file.  Equivalent ton
  1999. RECEIVE /COMMAND; see HELP RECEIVE for details."));
  2000. case XXCGET:
  2001.     return(hmsg("Syntax: CGET <remote-file-or-command> <local-command>n
  2002. Equivalent to GET /COMMAND; see HELP GET for details."));
  2003. #endif /* PIPESEND */
  2004. #ifndef NOSPL
  2005. case XXFUNC:
  2006. /*
  2007.   Tricky parsing.  We want to let them type the function name in any format
  2008.   at all: fblah(), fblah, \fblah(), fblah, blah, blah(), etc, but of course
  2009.   only one of these is recognized by cmkey().  So we call cmkeyx() (the "no
  2010.   complaints" version of cmkey()), and if it fails, we try the other formats
  2011.   silently, and still allow for <no-name-given>, editing and reparse, etc.
  2012. */
  2013.     y = cmkeyx(fnctab,nfuncs,"Name of function","",NULL);
  2014.     if (y == -1) { /* Reparse needed */
  2015. return(y);
  2016.     } else if (y == -3) {
  2017. if ((x = cmcfm()) < 0) /* For recall buffer... */
  2018.   return(x);
  2019.         return(dohfunc(y)); /* -3 gives general message */
  2020.     }
  2021.     if (y < 0) { /* Something given but didn't match */
  2022.         int dummy;
  2023. char * p;
  2024. for (p = atmbuf; *p; p++) { /* Chop off trailing parens if any */
  2025.     if (*p == '(') {
  2026. *p = NUL;
  2027. break;
  2028.     }
  2029. }
  2030. /* Chop off leading "\f" or "f" or "f" */
  2031. p = atmbuf;
  2032. if (*p == CMDQ) /* Allow for \f... */
  2033.   p++;
  2034. if (*p == CMDQ && (*(p+1) == 'f' || *(p+1) == 'F')) { /* or f */
  2035.     p += 2;
  2036. } else if (*p == 'f' || *p == 'F') { /* or just f */
  2037.     p++;
  2038. }
  2039. y = lookup(fnctab,p,nfuncs,&dummy); /* Look up the result */
  2040.     }
  2041.     if (y < 0) {
  2042. printf("?No such function - "%s"n",atmbuf);
  2043. return(-9);
  2044.     }
  2045.     x = cmgbrk(); /* Find out how user terminated */
  2046.     if (x == LF || x == CR) /* if with CR or LF */
  2047.       cmflgs = 1; /* restore cmflgs to say so */
  2048.     if ((x = cmcfm()) < 0) /* And THEN confirm so command will */
  2049.       return(x); /* get into recall buffer. */
  2050.     return(dohfunc(y));
  2051. #endif /* NOSPL */
  2052. #ifndef NOCMDL
  2053. case XXOPTS:                            /* Command-line options */
  2054.     return(dohopts());
  2055. case XXXOPTS:                           /* Extended command-line options */
  2056.     return(doxopts());
  2057. #endif /* NOCMDL */
  2058. #ifdef OS2
  2059. #ifndef NOKVERBS
  2060. case XXKVRB:
  2061.     y = cmkey(kverbs,nkverbs,"Name of keyboard verb without \k","",xxstring);
  2062.     return(dohkverb(y));
  2063. #endif /* NOKVERBS */
  2064. #endif /* OS2 */
  2065. case XXKERMI:
  2066.     return(hmsg("Syntax: KERMIT [command-line-options]n
  2067.   Lets you give command-line options at the prompt or in a script.n
  2068.   HELP OPTIONS for more info."));
  2069. case XXBACK:
  2070.     return(hmsg("Syntax: BACKn  Returns to your previous directory."));
  2071. case XXWHERE:
  2072.     return(hmsg("Syntax: WHEREn  Tells where your transferred files went."));
  2073. #ifndef NOXFER
  2074. case XXREMV:
  2075.     return(hmsga(hmxxremv));
  2076. #endif /* NOXFER */
  2077. #ifdef CK_KERBEROS
  2078. case XXAUTH:
  2079.     return(hmsga(hmxxauth));
  2080. #endif /* CK_KERBEROS */
  2081. #ifndef NOHTTP
  2082. case XXHTTP:
  2083.     return(hmsga(hmxxhttp));
  2084. #endif /* NOHTTP */
  2085. #ifdef NETCMD
  2086. case XXPIPE:
  2087.     return(hmsg("Syntax: PIPE [ command ]n
  2088. Makes a connection through the program whose command line is given. Example:n
  2089. n pipe rlogin xyzcorp.com"));
  2090. #endif /* NETCMD */
  2091. case XXSTATUS:
  2092.     return(hmsg(
  2093. "STATUS is the same as SHOW STATUS; prints SUCCESS or FAILURE for then
  2094. previous command."));
  2095. #ifndef NOSPL
  2096. case XXASSER:
  2097.     return(hmsg("Syntax: ASSERT <condition>n
  2098. Succeeds or fails depending on <condition>; see HELP IF for <condition>s."));
  2099. case XXFAIL:
  2100.     return(hmsg("Always fails."));
  2101. case XXSUCC:
  2102.     return(hmsg("Always succeeds."));
  2103. #endif /* NOSPL */
  2104. #ifdef CK_LOGIN
  2105. case XXLOGOUT:
  2106.     return(hmsg(
  2107. "If you haved logged in to C-Kermit as an Internet Kermit server, the LOGOUTn
  2108. command, given at the prompt, logs you out and closes your session."));
  2109. #endif /* CK_LOGIN */
  2110. #ifndef NOIKSD
  2111. case XXIKSD:
  2112.     return(hmsg(
  2113. "The Internet Kermit Service Daemon can be started only by the systemn
  2114. administrator.  The IKSD is documented separately."));
  2115. #endif /* NOIKSD */
  2116. case XXRESET:
  2117.     return(hmsg("Closes all open files and logs."));
  2118. #ifndef NOCSETS
  2119. case XXASSOC:
  2120.     return(hmsga(hmxxassoc));
  2121. #endif /* NOCSETS */
  2122. #ifndef NOSPL
  2123. case XXSHIFT:
  2124.     return(hmsg("Syntax: SHIFT [ n ]n
  2125.   Shifts \%1..9 variables n places to the left; default n = 1."));
  2126. #endif /* NOSPL */
  2127. #ifndef NOPUSH
  2128. case XXMAN:
  2129. #ifdef UNIX
  2130.     return(hmsg("Syntax: MANUAL [ topic ]n
  2131.   Runs the "man" command on the given topic (default "kermit")."));
  2132. #else
  2133. #ifdef OS2
  2134.     return(hmsg("Syntax: MANUALn
  2135.   Accesses the Kermit 95 HTML manual using the current browser."));
  2136. #else
  2137.     return(hmsg("Syntax: MANUAL [ topic ]n
  2138.   Runs the "help" command on the given topic (default "kermit")."));
  2139. #endif /* OS2 */
  2140. #endif /* UNIX */
  2141. #endif /* NOPUSH */
  2142. case XXWILD:
  2143.     return(hmsga(hmxxwild));
  2144. #ifndef NOXFER
  2145. case XXFAST:
  2146. case XXCAU:
  2147. case XXROB:
  2148.     return(hmsga(hmxxfast));
  2149. #endif /* NOXFER */
  2150. #ifdef CKPURGE
  2151. case XXPURGE:
  2152.     return(hmsga(hmxxpurge));
  2153. #else
  2154. #ifdef VMS
  2155. case XXPURGE:
  2156.     return(hmsga(hmxxpurge));
  2157. #endif /* VMS */
  2158. #endif /* CKPURGE */
  2159. #ifndef NOXFER
  2160.   case XXRASG:
  2161.     return(hmsg("RASG and RASSIGN are short forms of REMOTE ASSIGN."));
  2162.   case XXRCWD:
  2163.     return(hmsg("RCD and RCWD are short forms of REMOTE CD."));
  2164.   case XXRCPY:
  2165.     return(hmsg("RCOPY is a short form of REMOTE COPY."));
  2166.   case XXRDEL:
  2167.     return(hmsg("RDELETE is a short form of REMOTE RELETE."));
  2168.   case XXRDIR:
  2169.     return(hmsg("RDIRECTORY is a short form of REMOTE DIRECTORY."));
  2170.   case XXRXIT:
  2171.     return(hmsg("REXIT is a short form of REMOTE EXIT."));
  2172.   case XXRHLP:
  2173.     return(hmsg("RHELP is a short form of REMOTE HELP."));
  2174.   case XXRHOS:
  2175.     return(hmsg("RHOST is a short form of REMOTE HOST."));
  2176.   case XXRKER:
  2177.     return(hmsg("RKERMIT is a short form of REMOTE KERMIT."));
  2178.   case XXRMKD:
  2179.     return(hmsg("RMKDIR is a short form of REMOTE MKDIR."));
  2180.   case XXRPRI:
  2181.     return(hmsg("RPRINT is a short form of REMOTE PRINT."));
  2182.   case XXRPWD:
  2183.     return(hmsg("RPWD is a short form of REMOTE PWD."));
  2184.   case XXRQUE:
  2185.     return(hmsg("QUERY and RQUERY are short forms of REMOTE QUERY."));
  2186.   case XXRREN:
  2187.     return(hmsg("RRENAME is a short form of REMOTE RENAME."));
  2188.   case XXRRMD:
  2189.     return(hmsg("RRMDIR is a short form of REMOTE RMDIR."));
  2190.   case XXRSET:
  2191.     return(hmsg("RSET is a short form of REMOTE SET."));
  2192.   case XXRSPA:
  2193.     return(hmsg("RSPACE is a short form of REMOTE SPACE."));
  2194.   case XXRTYP:
  2195.     return(hmsg("RTYPE is a short form of REMOTE TYPE."));
  2196.   case XXRWHO:
  2197.     return(hmsg("RWHO is a short form of REMOTE WHO."));
  2198. #endif /* NOXFER */
  2199.   case XXSCRN:
  2200.     return(hmsga(hmxxscrn));
  2201. #ifdef CKEXEC
  2202.   case XXEXEC:
  2203.     return(hmsg("Syntax: EXEC <command> [ <arg1> [ <arg2> [ ... ] ]n
  2204.   C-Kermit overlays itself with the given system command and starts it withn
  2205.   the given arguments.  Upon any error, control returns to C-Kermit."));
  2206. #endif /* CKEXEC */
  2207. #ifndef NOSPL
  2208.   case XXTRACE:
  2209.     return(hmsg(
  2210. "Syntax: TRACE { /ON, /OFF } { ASSIGNMENTS, COMMAND-LEVEL, ALL }n
  2211.   Turns tracing of the given object on or off."));
  2212. #endif /* NOSPL */
  2213.   case XXNOTAV:
  2214.     return(hmsg(" This command is not configured in this version of Kermit."));
  2215. default: {
  2216.         char *s;
  2217.         if ((x = cmcfm()) < 0) return(x);
  2218.         s = cmdbuf + (int)strlen(cmdbuf) -1;
  2219.         while (s >= cmdbuf && *s == SP)
  2220.           *s-- = NUL;
  2221.         while (s >= cmdbuf && *s != SP)
  2222.           s--;
  2223.         while (*s == SP) s++;
  2224.         printf("Sorry, help not available for "%s"n",s);
  2225.         break;
  2226.       }
  2227.     } /* switch */
  2228. #endif /* NOHELP */
  2229.     return(success = 0);
  2230. }
  2231. /*  H M S G  --  Get confirmation, then print the given message  */
  2232. int
  2233. hmsg(s) char *s; {
  2234.     int x;
  2235.     if ((x = cmcfm()) < 0) return(x);
  2236.     printf("n%snn",s);
  2237.     return(0);
  2238. }
  2239. #ifdef NOHELP
  2240. int                                     /* Print an array of lines, */
  2241. hmsga(s) char *s[]; {                   /* cheap version. */
  2242.     int i;
  2243.     if ((i = cmcfm()) < 0) return(i);
  2244.     printf("n");                       /* Start off with a blank line */
  2245.     for (i = 0; *s[i]; i++) {           /* Print each line. */
  2246.         printf("%sn",s[i]);
  2247.     }
  2248.     printf("n");
  2249.     return(0);
  2250. }
  2251. #else /* NOHELP not defined... */
  2252. int                                     /* Print an array of lines, */
  2253. hmsga(s) char *s[]; {                   /* pausing at end of each screen. */
  2254.     extern int hmtopline; /* (This should be a parameter...) */
  2255.     int x, y, i, j, k, n;
  2256.     if ((x = cmcfm()) < 0) return(x);
  2257. #ifdef CK_TTGWSIZ
  2258. #ifdef OS2
  2259.     ttgcwsz();
  2260. #else /* OS2 */
  2261.     /* Check whether window size changed */
  2262.     if (ttgwsiz() > 0) {
  2263.         if (tt_rows > 0 && tt_cols > 0) {
  2264.             cmd_rows = tt_rows;
  2265.             cmd_cols = tt_cols;
  2266.         }
  2267.     }
  2268. #endif /* OS2 */
  2269. #endif /* CK_TTGWSIZ */
  2270.     printf("n");                       /* Start off with a blank line */
  2271.     n = (hmtopline > 0) ? hmtopline : 1; /* Line counter */
  2272.     for (i = 0; *s[i]; i++) {
  2273.         printf("%sn",s[i]);            /* Print a line. */
  2274.         y = (int)strlen(s[i]);
  2275.         k = 1;
  2276.         for (j = 0; j < y; j++)         /* See how many newlines were */
  2277.           if (s[i][j] == 'n') k++;     /* in the string... */
  2278.         n += k;
  2279.         if (n > (cmd_rows - 3) && *s[i+1]) /* After a screenful, give them */
  2280.           if (!askmore()) return(0);    /* a "more?" prompt. */
  2281.           else n = 0;
  2282.     }
  2283.     printf("n");
  2284.     return(0);
  2285. }
  2286. #ifndef NOXMIT
  2287. static char *hsetxmit[] = {
  2288. "Syntax: SET TRANSMIT parameter value",
  2289. " ",
  2290. "Controls the behavior of the TRANSMIT command (see HELP TRANSMIT):",
  2291. " ",
  2292. "SET TRANSMIT ECHO { ON, OFF }",
  2293. "  Whether to echo text to your screen as it is being transmitted.",
  2294. " ",
  2295. "SET TRANSMIT EOF text",
  2296. "  Text to send after end of file is reached, e.g. \4 for Ctrl-D",
  2297. " ",
  2298. "SET TRANSMIT FILL number",
  2299. "  ASCII value of a character to insert into blank lines, 0 for none.",
  2300. "  Applies only to text mode.  0 by default.",
  2301. " ",
  2302. "SET TRANSMIT LINEFEED { ON, OFF }",
  2303. "  Transmit Linefeed as well as Carriage Return (CR) at the end of each line.",
  2304. "  Normally, only CR  is sent.",
  2305. " ",
  2306. "SET TRANSMIT LOCKING-SHIFT { ON, OFF }",
  2307. "  Whether to use SO/SI for transmitting 8-bit data when PARITY is not NONE.",
  2308. " ",
  2309. "SET TRANSMIT PAUSE number",
  2310. "  How many milliseconds to pause after transmitting each line (text mode),",
  2311. "  or each character (binary mode).",
  2312. " ",
  2313. "SET TRANSMIT PROMPT number",
  2314. "  ASCII value of character to look for from host before sending next line",
  2315. "  when TRANSMITting in text mode; normally 10 (Linefeed).  0 means none;",
  2316. "  don't wait for a prompt.",
  2317. " ",
  2318. "SET TRANSMIT TIMEOUT number",
  2319. "  Number of seconds to wait for each character to echo when TRANSMIT ECHO",
  2320. "  is ON or TRANSMIT PROMPT is not 0.  If 0 is specified, this means wait",
  2321. "  indefinitely for each echo.",
  2322. " ",
  2323. "Synonym: SET XMIT.  SHOW TRANSMIT displays current settings.",
  2324. "" };
  2325. #endif /* NOXMIT */
  2326. static char *hsetbkg[] = {
  2327. "Syntax: SET BACKGROUND { OFF, ON }",
  2328. " ",
  2329. "  SET BACKGROUND OFF forces prompts and messages to appear on your screen",
  2330. "  even though Kermit thinks it is running in the background.",
  2331. "" };
  2332. #ifdef DYNAMIC
  2333. static char *hsetbuf[] = {
  2334. "Syntax: SET BUFFERS n1 [ n2 ]",
  2335. " ",
  2336. "  Changes the overall amount of memory allocated for SEND and RECEIVE packet",
  2337. "  buffers, respectively.  Bigger numbers let you have longer packets and",
  2338. "  more window slots.  If n2 is omitted, the same value as n1 is used.",
  2339. #ifdef BIGBUFOK
  2340. " ",
  2341. "  NOTE: This command is not needed in this version of C-Kermit, which is",
  2342. "  already configured for maximum-size packet buffers.",
  2343. #endif /* BIGBUFOK */
  2344. "" };
  2345. #endif /* DYNAMIC */
  2346. static char *hsetcmd[] = {
  2347. "Syntax: SET COMMAND parameter value",
  2348. " ",
  2349. #ifdef CK_AUTODL
  2350. "SET COMMAND AUTODOWNLOAD { ON, OFF }",
  2351. "  Enables/Disables automatic recognition of Kermit packets while in",
  2352. "  command mode.  ON by default.",
  2353. " ",
  2354. #endif /* CK_AUTODL */
  2355. "SET COMMAND BYTESIZE { 7, 8 }",
  2356. "  Informs C-Kermit of the bytesize of the communication path between itself",
  2357. "  and your keyboard and screen.  7 is assumed.  SET COMMAND BYTE 8 to allow",
  2358. "  entry and display of 8-bit characters.",
  2359. " ",
  2360. #ifdef OS2
  2361. "SET COMMAND COLOR <foreground-color> <background-color>",
  2362. "  Lets you choose colors for Command screen.  Use ? in the color fields to",
  2363. "  to get lists of available colors.",
  2364. " ",
  2365. "SET COMMAND CURSOR-POSITION <row> <column>",
  2366. "  Moves the command-screen cursor to the given position (1-based).  This",
  2367. "  command should be used in scripts instead of relying on ANSI.SYS escape",
  2368. "  sequences.",
  2369. " ",
  2370. #endif /* OS2 */
  2371. "SET COMMAND HEIGHT <number>",
  2372. "  Informs C-Kermit of the number of rows in your command screen for the",
  2373. "  purposes of More?-prompting.",
  2374. " ",
  2375. "SET COMMAND WIDTH <number>",
  2376. "  Informs C-Kermit of the number of characters across your screen for",
  2377. "  purposes of screen formatting.",
  2378. " ",
  2379. "SET COMMAND MORE-PROMPTING { ON, OFF }",
  2380. "  ON (the default) enables More?-prompting when C-Kermit needs to display",
  2381. "  text that does not fit vertically on your screen.  OFF allows the text to",
  2382. "  scroll by without intervention.  If your command window has scroll bars,",
  2383. "  you might prefer OFF.",
  2384. " ",
  2385. #ifdef CK_RECALL
  2386. "SET COMMAND RECALL-BUFFER-SIZE number",
  2387. "  How big you want C-Kermit's command recall buffer to be.  By default, it",
  2388. "  holds 10 commands.  You can make it any size you like, subject to memory",
  2389. "  constraints of the computer.  A size of 0 disables command recall.",
  2390. "  Whenever you give this command, previous command history is lost.",
  2391. " ",
  2392. #endif /* CK_RECALL */
  2393. "SET COMMAND QUOTING { ON, OFF }",
  2394. "  Whether to treat backslash and question mark as special characters (ON),",
  2395. "  or as ordinary data characters (OFF) in commands.  ON by default.",
  2396. " ",
  2397. #ifdef CK_RECALL
  2398. "SET COMMAND RETRY { ON, OFF }",
  2399. "  Whether to reprompt you with the correct but incomplete portion of a",
  2400. "  syntactically incorrect command.  ON by default.",
  2401. " ",
  2402. #endif /* CK_RECALL */
  2403. #ifdef OS2
  2404. "SET COMMAND SCROLLBACK <lines>",
  2405. "  Sets size of virtual Command screen buffer to the given number of lines,",
  2406. "  which includes the active Command screen.  The minimum is 256.  The max",
  2407. "  is 2 million.  The default is 512.",
  2408. " ",
  2409. #endif /* OS2 */
  2410. "Use SHOW COMMAND to display these settings.",
  2411. "" };
  2412. #ifndef NOLOCAL
  2413. static char *hsetcar[] = {
  2414. "Syntax: SET CARRIER-WATCH { AUTO, OFF, ON }",
  2415. " ",
  2416. "  Attempts to control treatment of carrier (the Data Carrier Detect signal)",
  2417. "  on serial communication (SET LINE or SET PORT) devices.  ON means that",
  2418. "  carrier is required at all times.  OFF means carrier is never required.",
  2419. "  AUTO (the default) means carrier is required at all times except during",
  2420. "  the DIAL command.  Correct operation of carrier-watch depends on the",
  2421. "  capabilities of the underlying OS, drivers, devices, and cables.  If you",
  2422. "  need to CONNECT to a serial device that is not asserting carrier, and",
  2423. "  Kermit won't let you, use SET CARRIER-WATCH OFF.  Use SHOW COMMUNICATIONS",
  2424. "  to display the CARRIER-WATCH setting.",
  2425. "" };
  2426. #endif /* NOLOCAL */
  2427. static char *hsetat[] = {
  2428. "Syntax: SET ATTRIBUTES name ON or OFF",
  2429. " ",
  2430. "  Use this command to enable (ON) or disable (OFF) the transmission of",
  2431. "  selected file attributes along with each file, and to handle or ignore",
  2432. "  selected incoming file attributes, including:",
  2433. " ",
  2434. #ifndef NOCSETS
  2435. "   CHARACTER-SET:  The transfer character set for text files",
  2436. #endif /* NOCSETS */
  2437. "   DATE:           The file's creation date",
  2438. "   DISPOSITION:    Unusual things to do with the file, like MAIL or PRINT",
  2439. "   LENGTH:         The file's length",
  2440. "   PROTECTION:     The files protection (permissions)",
  2441. "   SYSTEM-ID:      Machine/Operating system of origin",
  2442. "   TYPE:           The file's type (text or binary)",
  2443. " ",
  2444. "You can also specify ALL to select all of them.  Examples:",
  2445. " ",
  2446. "   SET ATTR DATE OFF",
  2447. "   SET ATTR LENGTH ON",
  2448. "   SET ATTR ALL OFF",
  2449. ""
  2450. };
  2451. static char *hxytak[] = {
  2452. "Syntax: SET TAKE parameter value",
  2453. " ",
  2454. "  Controls behavior of TAKE command:",
  2455. " ",
  2456. "SET TAKE ECHO { ON, OFF }",
  2457. "  Tells whether commands read from a TAKE file should be displayed on the",
  2458. "  screen (if so, each command is shown at the time it is read, and labeled",
  2459. "  with a line number).",
  2460. " ",
  2461. "SET TAKE ERROR { ON, OFF }",
  2462. "  Tells whether a TAKE command file should be automatically terminated when",
  2463. "  a command fails.  This setting is local to the current command file, and",
  2464. "  inherited by subordinate command files.",
  2465. "" };
  2466. #ifndef NOLOCAL
  2467. #ifdef OS2MOUSE
  2468. static char *hxymouse[] = {
  2469. "Syntax: SET MOUSE ACTIVATE { ON, OFF }",
  2470. "  Enables or disables the mouse in Connect mode.  Default is ON",
  2471. " ",
  2472. "Syntax: SET MOUSE BUTTON <number> <key-modifier> <action> [ <text> ]",
  2473. " where:",
  2474. "  <number> is the mouse button number, 1, 2, or 3;",
  2475. "  <key-modifier> denotes modifier keys held down during the mouse event:",
  2476. "   ALT, ALT-SHIFT, CTRL, CTRL-ALT CTRL-ALT-SHIFT, CTRL-SHIFT, SHIFT, NONE;",
  2477. "  <action> is the mouse action, CLICK, DRAG, or DOUBLE-CLICK.",
  2478. " ",
  2479. " The <text> has exactly the same properties as the <text> from the SET KEY",
  2480. " command -- it can be a character, a string, one or more Kverbs, a macro",
  2481. " invoked as a Kverb, or any combination of these.  Thus, anything that can",
  2482. " be assigned to a key can also be assigned to the mouse -- and vice versa.",
  2483. " If the <text> is omitted, the action will be ignored.  Examples:",
  2484. " ",
  2485. " SET MOUSE BUTTON 1 NONE DOUBLE \KmouseCurPos",
  2486. " SET MOU B 2 SHIFT CLICK help\13",
  2487. " ",
  2488. " DRAG operations perform a "mark mode" selection of Text. You should",
  2489. " assign only the following actions to drag operations:",
  2490. " ",
  2491. "  \Kdump         - copy marked text to printer (or file)",
  2492. "  \Kmarkcopyclip - copy marked text to PM Clipboard",
  2493. "  \Kmarkcopyhost - copy marked text direct to Host",
  2494. "  \Kmousemark    - mark text, no copy operation performed",
  2495. " ",
  2496. " The following Kverb is only for use with the mouse:",
  2497. " ",
  2498. "  \KmouseCurPos",
  2499. " ",
  2500. " which represents the mouse-directed terminal cursor feature.",
  2501. " ",
  2502. "Syntax: SET MOUSE CLEAR",
  2503. " Restores all mouse events to their default definitions",
  2504. "  Button 1 Double-Click = Kverb: \Kmousecurpos",
  2505. "  Button 1 Drag         = Kverb: \Kmarkcopyclip",
  2506. "  Button 1 Ctrl Drag    = Kverb: \Kmarkcopyhost",
  2507. "  Button 2 Double-Click = Kverb: \Kpaste",
  2508. ""};
  2509. #endif /* OS2MOUSE */
  2510. static char *hxyterm[] = {
  2511. "Syntax: SET TERMINAL parameter value",
  2512. " ",
  2513. #ifdef OS2
  2514. "SET TERMINAL TYPE { ANSI, VT52, VT100, VT102, VT220, VT320, ... }",
  2515. "  Selects type type of terminal to emulate.  Type SET TERMINAL TYPE ? to",
  2516. "  see a complete list.",
  2517. " ",
  2518. "SET TERMINAL ANSWERBACK { OFF, ON }",
  2519. "  Disables/enables the ENQ/Answerback sequence ("K-95 version term-type").",
  2520. " ",
  2521. "SET TERMINAL ANSWERBACK MESSAGE <extension>",
  2522. "  Allows you to specify an extension to the default answerback message.",
  2523. " ",
  2524. #else
  2525. "SET TERMINAL TYPE ...",
  2526. "  This command is not available because this version of C-Kermit does not",
  2527. "  include a terminal emulator.  Instead, it is a "semitransparent pipe"",
  2528. "  (or a totally transparent one, if you configure it that way) to the",
  2529. "  computer or service you have made a connection to.  Your console,",
  2530. "  workstation window, or the terminal emulator or terminal from which you",
  2531. "  are running C-Kermit provides the emulation.",
  2532. " ",
  2533. #endif /* OS2 */
  2534. #ifdef CK_APC
  2535. "SET TERMINAL APC { ON, OFF, UNCHECKED }",
  2536. #ifdef OS2