home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95 / ckcbwr.txt < prev    next >
Text File  |  2020-01-01  |  50KB  |  1,065 lines

  1. CKCBWR.TXT           "Beware File" for C-Kermit Version 6.0        -*- text -*-
  2.  
  3. As of C-Kermit version:  6.1.194
  4. This file last updated:  Mon Jun 15 10:47:15 1998
  5.  
  6. Authors: Frank da Cruz and Christine M. Gianone, Columbia University.
  7.  
  8.   Copyright (C) 1985, 1998, Trustees of Columbia University in the City of New
  9.   York.  The C-Kermit software may not be, in whole or in part, licensed or
  10.   sold for profit as a software product itself, nor may it be included in or
  11.   distributed with commercial products or otherwise distributed by commercial
  12.   concerns to their clients or customers without written permission of the
  13.   Office of Kermit Development and Distribution, Columbia University.  This
  14.   copyright notice must not be removed, altered, or obscured.
  15.  
  16. Report problems, suggestions, fixes, etc, to:
  17.  
  18.   The Kermit Project
  19.   Columbia University
  20.   612 West 115th Street
  21.   New York NY 10025-7799
  22.   USA
  23.   Email: kermit-support@columbia.edu
  24.   Web:   http://www.columbia.edu/kermit/
  25.   News:  comp.protocols.kermit.misc
  26.  
  27. C-Kermit 6.0 is documented in the book "Using C-Kermit" by Frank da Cruz and
  28. Christine M. Gianone, Second Edition, 1997, Digital Press / Butterworth-
  29. Heinemann, Woburn, MA, USA, ISBN 1-55558-164-1.  Price: US $41.95.  Available
  30. in book and computer stores, or order by phone, call Columbia University at
  31. +1 212 854-3703, or Butterworth-Heinemann at +1 800 366-2665.  A German edition
  32. is available from Verlag Heinz Heise in Hannover, Germany.
  33.  
  34.  
  35. WHAT IS IN THIS FILE
  36.  
  37. This is the "beware file" for C-Kermit.  It contains hints and tips,
  38. frequently asked questions (and answers), troubleshooting advice, limitations
  39. and restrictions, known bugs, etc, that apply to all C-Kermit variations.
  40. This file is supplemented by a system-specific "beware file" for each major
  41. system where C-Kermit runs:
  42.  
  43.   ckuker.bwr - All variations of UNIX: HP-UX, AIX, SCO, Solaris, etc.
  44.   ckvker.bwr - Digital Equipment Corporation VMS and OpenVMS
  45.   cklker.bwr - Stratus VOS
  46.   ckdker.bwr - Data General AOS/VS
  47.   ckmker.bwr - Apple Macintosh
  48.   ckiker.bwr - Commodore Amiga
  49.   cksker.bwr - Atari ST
  50.   ck9ker.bwr - Microware OS-9
  51.   ckpker.bwr - Bell Labs Plan 9
  52.  
  53. This file contains the following sections:
  54.  
  55.    (1) INCOMPATIBLE CHANGES IN VERSION 6.0
  56.    (2) THE C-KERMIT COMMAND PARSER
  57.    (3) MULTIPLE SESSIONS
  58.    (4) NETWORK COMMUNICATION
  59.    (5) THE SERVICES DIRECTORY
  60.    (6) MODEMS AND DIALING
  61.    (7) DIALING HINTS AND TIPS
  62.    (8) TERMINAL SERVERS
  63.    (9) TERMINAL EMULATION
  64.   (10) KEY MAPPING
  65.   (11) THE TRANSMIT COMMAND
  66.   (12) FILE TRANSFER
  67.   (13) SCRIPT PROGRAMMING
  68.  
  69.  
  70. (1) INCOMPATIBLE CHANGES
  71.  
  72. These are not necessarily exhaustive lists.
  73.  
  74. The following incompatible changes were made in C-Kermit 6.0:
  75.  
  76.  . Unless you tell C-Kermit otherwise, if a serial or network connection
  77.    seems to be open, and you attempt to EXIT or to SET LINE or SET HOST or
  78.    TELNET, C-Kermit warns you that an active connection appears to be open
  79.    and asks you if you really want to close it.  If you do not want these
  80.    warnings, add SET EXIT WARNING OFF to your customization file.
  81.  
  82.  . The default for SET { SEND, RECEIVE } PATHNAMES was changed from ON
  83.    to OFF, to prevent unexpected creation of directories and depositing of
  84.    incoming files in places you might not know to look.
  85.  
  86.  . The default for SET FILE INCOMPLETE was changed from DISCARD to KEEP to
  87.    allow for file transfer recovery.
  88.  
  89.  . The default file-transfer block-check is now 3, rather than 1.  If the
  90.    other Kermit does not support this, the two will drop back to type 1
  91.    automatically.
  92.  
  93.  . The default flow-control is now "auto" ("do the right thing"), not Xon/Xoff.
  94.  
  95.  . Backslash (\) is no longer a command continuation character.  Only -
  96.    (hyphen, dash) may be used for this in C-Kermit 6.0 and later.
  97.  
  98.  . Negative INPUT timeout now results in infinite wait, rather than 1 second.
  99.  
  100. And in version 6.1:
  101.  
  102.  . The "multiline GET" command is gone.  Now use:
  103.  
  104.      get <remote-name> <local-name>
  105.  
  106.    or:
  107.  
  108.      get /as-name:<local-name> <remote-name>
  109.  
  110.    If either name contains spaces, enclose it in braces.
  111.  
  112.  . To request list of files from the server, you must now use MGET rather
  113.    than GET:
  114.  
  115.       mget file1 file2 file3 ...
  116.  
  117. (2) THE C-KERMIT COMMAND PARSER
  118.  
  119. When using the command-line processor ("kermit -l /dev/tty00 -b 19200", etc),
  120. note that in some cases the order of the command-line options makes a
  121. difference, contrary to the expectation that order of command-line options
  122. should not matter.  For example, the -b option must be given after the -l
  123. option if it is to have any effect.
  124.  
  125. In the interactive command parser:
  126.  
  127.  . VMS-style command editing (arrow keys, etc) is not supported.
  128.  . EMACS- or VI-style command line editing is not supported.
  129.  . Editing keys are hardwired (Ctrl-U, Ctrl-W, etc).
  130.  
  131. If you interrupt C-Kermit before it has issued its first prompt, it will exit.
  132. This means that you cannot interrupt execution of the initialization file, or
  133. of an "application file" (file whose name is given as the first command-line
  134. argument), or of an alternative initialization file ("-y filename"), and get
  135. to the prompt.  There is, however, one exception to this rule: you *can*
  136. interrupt commands -- including TAKE commands -- given in the '-C "command
  137. list"' command-line argument and -- if there were no action commands among the
  138. command-line arguments -- you will be returned to the C-Kermit prompt.  So,
  139. for example, if you want to start C-Kermit in such a way that it executes a
  140. command file before issuing its first prompt, and you also want to be able to
  141. interrupt the command file and get to the prompt, include a TAKE command for
  142. the desired command in the -C argument, for example:
  143.  
  144.    kermit -C "take dial.scr"
  145.  
  146. Reportedly, if you attempt to interrupt Kermit while it is executing its
  147. initialization file, and you do this rapidly enough, e.g. by sending a
  148. constant stream of Ctrl-C's at a very high rate, depending on the underlying
  149. operating system (reported only on a couple versions of UNIX), duplicate
  150. Kermit processes might be created -- cause unknown, cure unknown, workaround:
  151. don't do it.
  152.  
  153. If you use the backslash (\) prefix to enter a control character, space, or
  154. question mark into a command literally, the backslash disappears and is
  155. replaced by the quoted character.  If it was a control character, it is shown
  156. as a circumflex (^).  This allows editing (backspace, delete, Ctrl-W) to work
  157. correctly even for control characters.
  158.  
  159. The only way to include a comma literally in a macro definition -- as opposed
  160. to having it separate commands within the definition -- is to enter its ASCII
  161. value (44) in backslash notation, e.g.:
  162.  
  163.   DEFINE ROWS MODE CO80\{44}\%1
  164.  
  165. If you quote special characters in a filename (e.g. in the SEND command),
  166. filename completion may seem to work incorrectly.  For example, if you have a
  167. file whose name is a*b (the name really contains an asterisk), and you type
  168. "send a\\*<ESC>", the "b" will not appear, nor will Ctrl-R redisplay the
  169. completed name correctly.  But internally the file name is recognized anyway.
  170.  
  171. Question-mark help does not work during execution of an ASKQ command.  The
  172. question marks are simply accepted as text.
  173.  
  174. The maximum length for a variable name is 64 characters.  For array
  175. declarations and references, that includes the subscript.
  176.  
  177.                                                      Sample
  178. Some other maximums to watch out for:      Symbol    Value Defined in
  179.                                      
  180.  Nesting level for command files:           MAXTAKE      30  ckuusr.h
  181.  Nesting level for macros:                  MACLEVEL     50  ckuusr.h
  182.  Nesting level for FOR / WHILE loops:       FORDEPTH     10  ckuusr.h
  183.  Number of macros:                          MAC_MAX     256  ckuusr.h
  184.  Size of INPUT buffer:                      INPBUFSIZ   256  ckuusr.h
  185.  Maximum files to match a wildcard:         MAXWLD   varies  ck?fio.c
  186.  Filespecs in MSEND command:                MSENDMAX    100  ckuusr.h
  187.  Length of MSEND or GET string:             FSPECL      300  ckuusr.h
  188.  Length for GOTO target label:              LBLSIZ       50  ckuusr.h
  189.  Number of characters in a command:         CMDBL      1024  ckucmd.h
  190.  Number of chars in a field of a command:   ATMBL       256  ckucmd.h
  191.  \fexecute() recursion depth limit:         CMDDEP       20  ckucmd.h
  192.  
  193. The actual values of most of these items can vary with version and
  194. configuration, and are listed by SHOW FEATURES.
  195.  
  196. ASK and ASKQ strip leading and trailing spaces from what the user types.  This
  197. happens way down deep in the command parser -- it's nothing special about ASK
  198. and friends.  The only way around this that works in both C-Kermit and MS-DOS
  199. Kermit is for the user (the one who is responding to the ASK prompt) to type
  200. (the first) leading space as "\32" and the (final) trailing space as "\32".
  201. In this example, the password begins with 2 leading blanks and ends with two
  202. trailing blanks, and "Passwd:" is the ASK prompt:
  203.  
  204.  Passwd:\32 secret \32
  205.  
  206. Of course, the user could also type *all* blanks as \32.
  207.  
  208. In OUTPUT commands only, \B and \\B send a BREAK signal, and \L and \\L send a
  209. Long BREAK signal, and \N and \\N send a NUL (ASCII 0).  BREAK and Long BREAK
  210. are special signals, not characters, and NUL is a character that normally
  211. cannot be included in a C string, since it is the C string terminator.
  212.  
  213. If you really want to output a backslash followed by a B, an L, or an N (as is
  214. needed to configure certain modems, etc), use "output \\B".
  215.  
  216. In C-Kermit 6.1 or later, you can disarm and re-arm the special OUTPUT-command
  217. escapes (\B, \L, and \N) with SET OUTPUT SPECIAL-ESCAPES { OFF, ON }.
  218.  
  219. (3) MULTIPLE SESSIONS
  220.  
  221. C-Kermit does not support multiple sessions.  When you SET LINE (or SET PORT,
  222. same thing) to a new device, or SET HOST to a new host, the previous SET LINE
  223. device or network host connection is closed, resulting in hangup of the modem
  224. or termination of the network connection.  In windowing environments like
  225. HP-VUE, NeXTSTEP, OS/2, etc, you can run separate copies of Kermit in different
  226. windows to achieve multiple sessions.
  227.  
  228. To achieve multiple sessions through a single serial port (e.g. when dialing
  229. up), you can install SLIP or PPP on your computer and then use C-Kermit's
  230. TCP/IP support over the SLIP or PPP connection, assuming you also have
  231. TCP/IP networking installed on your computer.
  232.  
  233. On UNIX systems that support the "term" program, you can establish a
  234. connection to another UNIX system with C-Kermit and then achieve multiple
  235. sessions using "term" client programs like trsh (see ckuker.bwr and the term
  236. documentation for details).
  237.  
  238.  
  239. (4) NETWORK COMMUNICATION
  240.  
  241. In multiuser operating systems such as UNIX and VMS, TCP/IP RLOGIN connections
  242. are available only to privileged users, since "login" is a privileged socket.
  243. And assuming you are allowed to use it in the first place, it is likely to
  244. behave differently depending on what type of host you are rlogging in to, due
  245. to technical reasons having to do with conflicting interpretations of RFC793
  246. (Out-Of-Band Data) and Rlogin (RFC1122)...  "Specifically, the TCP urgent
  247. pointer in BSD points to the byte after the urgent data byte, and an
  248. RFC-compliant TCP urgent pointer points to the urgent data byte. As a result,
  249. if an application sends urgent data from a BSD-compatible implementation to an
  250. RFC-1122 compatible implementation then the receiver will read the wrong
  251. urgent data byte (it will read the byte located after the correct byte in the
  252. data stream as the urgent data byte)."  Rlogin requires the use of OOB data
  253. while Telnet does not.  Therefore, it is possible for Telnet to work between
  254. all systems while BSD and System V TCP/IP implementation are almost always a
  255. bad mix.
  256.  
  257. On a TCP/IP TELNET connection, you should normally have PARITY set to NONE and
  258. (except in VMS C-Kermit) FLOW-CONTROL also set to NONE.  If file transfer does
  259. not work with these settings (for example, because the remote TELNET server
  260. only gives a 7-bit data path), use SET PARITY SPACE.  Do not use SET PARITY
  261. MARK, EVEN, or ODD on a TELNET connection -- it interferes with TELNET
  262. protocol.
  263.  
  264. If echoing does not work right after connecting to a network host or after
  265. dialing through a TCP/IP modem server, it probably means that the TELNET
  266. server on the far end of the connection is executing the TELNET protocol
  267. incorrectly.  After initially connecting and discovering incorrect echoing
  268. (characters are echoed twice, or not at all), escape back, give the
  269. appropriate SET DUPLEX command (FULL or HALF), and then CONNECT again.
  270. For a consistently misbehaving connection, you can automate this process in
  271. a macro or TAKE file.
  272.  
  273. TELNET sessions are treated just like serial communications sessions as far as
  274. "terminal bytesize" and "command bytesize" are concerned.  If you need to view
  275. and/or enter 8-bit characters during a TELNET session, you must tell C-Kermit
  276. to SET TERMINAL BYTESIZE 8, SET COMMAND BYTESIZE 8, and SET PARITY NONE.
  277.  
  278. If you SET TERMINAL DEBUG ON or SET DEBUG SESSION (same thing), TELNET
  279. protocol negotiations will be displayed on your screen.  But most of the
  280. interesting negotiations happen at the time the SET HOST or TELNET command
  281. is given, before CONNECT mode is entered, so you won't see them on your
  282. screen.  However, you can still capture them in the debug log ("log debug").
  283.  
  284. C-Kermit version 6.0 has a new set of SET TCP commands, to control TCP-level
  285. parameters, such as "keepalive" protocol (that allows C-Kermit to detect
  286. more quickly and reliably when a connection is broken).  Use SHOW NET to see
  287. their values and SET TCP to change them.
  288.  
  289.  
  290. (5) THE SERVICES DIRECTORY
  291.  
  292. Is now explained fully in "Using C-Kermit", 2nd Edition, Chapter 7.
  293.  
  294.  
  295. (6) MODEMS AND DIALING
  296.  
  297. The list of modem types supported by C-Kermit is obtained by typing:
  298.  
  299.   set modem type ?
  300.  
  301. at the C-Kermit> prompt.  Note that the ITU-T (V.25bis) modem type is only
  302. for asynchronous mode, not synchronous (HDLC) mode -- there is no support
  303. in C-Kermit for synchronous communication (except for SET NET X.25, which
  304. is only available on certain platforms).
  305.  
  306. Modems can be used by C-Kermit only when they are visible as or through a
  307. regular serial port device.  Note that certain modems can not be used in this
  308. normal way on many kinds of computers: Winmodems, RPI modems, Controllerless
  309. modems, the IBM Mwave, etc; all of these require special drivers that perform
  310. some, most, or all of the modem's functions in software.  Such drivers are
  311. generally NOT available in UNIX or other non-Windows (or non-OS/2, in the case
  312. of the Mwave) platforms.
  313.  
  314. An important change in C-Kermit 6.0 is that when you give a SET MODEM TYPE
  315. command to tell Kermit what kind of modem you have, Kermit also sets a number
  316. of other modem-related parameters automatically from its internal modem
  317. database.  Thus, the order in which you give modem-related commands is
  318. significant, whereas in prior releases they could be given in any order.
  319.  
  320. The new default for flow control is "auto", meaning "do the right thing".
  321. So (for example) if your version of C-Kermit supports SET FLOW RTS/CTS and
  322. your modem also supports RTS/CTS, then Kermit will automatically set its
  323. flow control to RTS/CTS *and* set modem's flow control to RTS/CTS too before
  324. attempting to use the modem.
  325.  
  326.  
  327. (7) DIALING HINTS AND TIPS
  328.  
  329. Remember: In many C-Kermit implementations (depending on the underlying
  330. operating system -- mostly Windows, OS/2, and System-V-based UNIX versions,
  331. and in C-Kermit 6.1, also VMS), you can't CONNECT to a modem and type the
  332. modem's dialing command (like "ATDT7654321") manually, unless you first tell
  333. C-Kermit to:
  334.  
  335.   SET CARRIER-WATCH OFF
  336.  
  337. This is because (in these implementations), the CONNECT command requires the
  338. modem's Carrier Detect (CD) signal to be on, but the CD signal doesn't come on
  339. until after dialing is complete.  This requirement is what allows C-Kermit to
  340. pop back to its prompt automatically when the connection is hung up.  See the
  341. description of SET CARRIER-WATCH in "Using C-Kermit".
  342.  
  343. Similarly, if your dialed connection drops when CARRIER-WATCH is set to AUTO
  344. or ON, you can't CONNECT back to the (now disconnected) screen to see what
  345. might have happened unless you first SET CARRIER-WATCH OFF.
  346.  
  347. Don't SET FLOW RTS/CTS if your modem is turned off, or if it is not presenting
  348. the CTS signal.  Otherwise, the serial device driver might get stuck waiting
  349. for this signal to appear.
  350.  
  351. The HANGUP command has no effect when C-Kermit is in remote mode.  This is
  352. on purpose.  If C-Kermit could hang up its own controlling terminal, this
  353. would (a) most likely leave behind zombie processes, and (b) pose a security
  354. risk.
  355.  
  356. Here are a few points to clarify the purpose of SET MODEM SPEED-MATCHING:
  357.  
  358.  0. The name was changed from SET DIAL SPEED-MATCHING to SET MODEM
  359.     SPEED-MATCHING in edit 192, as part of the overhaul of the dialing
  360.     features.
  361.  
  362.  1. This command does not do anything at all to the modem.  Rather, it is used
  363.     to inform C-Kermit about the modem's configuration: whether the modem's
  364.     interface speed is "fixed", or it changes its interface speed when a
  365.     connection is made.  In the latter case, C-Kermit changes its own speed in
  366.     response to the speed given in the modem's CONNECT message.  By default,
  367.     SPEED-MATCHING is ON, so Kermit does indeed attempt to change its speed.
  368.     If your modem is set to have a fixed interface speed, you must SET MODEM
  369.     SPEED-MATCHING OFF.
  370.  
  371.  2. When MODEM SPEED-MATCHING is ON:
  372.  
  373.     (a) Your modem must be configured to report its *interface* speed in the
  374.         CONNECT message, rather than the connection (modulation) speed.
  375.  
  376.     (b) Your computer (and C-Kermit) must support all connection speeds that
  377.         might be reported by your modem.  SET SPEED ? will give you a list of
  378.         the speeds that your version of C-Kermit knows about.
  379.  
  380.  3. If conditions (a) and (b) cannot be satisfied, then you must:
  381.  
  382.     (a) Configure your modem to lock its interface speed
  383.  
  384.     (b) Tell C-Kermit to SET MODEM SPEED-MATCHING OFF
  385.  
  386. To illustrate, suppose you have a V.32bis modem.  When it connects to a
  387. remote V.32bis modem, it might issue a message like:
  388.  
  389.   CONNECT 14400
  390.  
  391. But 14400 bps is not a speed that is supported by certain operating systems
  392. and so C-Kermit might fail to adjust its speed according to this report.
  393. Therefore, you must lock the modem's interface speed at a higher speed (such
  394. as 19200, 38400, or 57600) that is supported by C-Kermit, set C-Kermit to the
  395. same speed, and tell C-Kermit to SET MODEM SPEED-MATCHING OFF.
  396.  
  397. If you have a high-speed, error-correcting, data-compressing, speed-buffering
  398. modem, you should always SET MODEM SPEED-MATCHING OFF, and you should fix the
  399. modem's interface speed as high as possible, preferably four times higher than
  400. its maximum connection (modulation) speed to allow compression to work at full
  401. advantage.  In this type of setup, you must also have an effective means of
  402. flow control enabled between C-Kermit and the modem, preferably hardware
  403. (RTS/CTS) flow control.
  404.  
  405. C-Kermit knows about a large number of modems, depending on how it was built
  406. (type "set modem type ?" and "show features" for further info).  This
  407. knowledge is imbedded in the SET MODEM and DIAL commands.  If you are having
  408. trouble dialing your modem, SET DIAL DISPLAY ON to watch the dialing
  409. interactions between C-Kermit and your modem.  Consult Chapters 3-4 of "Using
  410. C-Kermit" (2nd Ed) for modem-dialing troubleshooting instructions.
  411.  
  412. If it takes your call longer to be completed than the timeout interval that
  413. C-Kermit calculates, you can use the SET DIAL TIMEOUT command to override
  414. C-Kermit's value.  But beware: the modem has its own timeout for completing
  415. the call.  If it is a Hayes-like modem, C-Kermit adjusts the modem's value
  416. too by setting register S7.  But the maximum value for S7 might be smaller
  417. than the time you need!  In that case, C-Kermit sets S7 to 0, 255, or other
  418. (modem-specific) value to signify "no timeout".
  419.  
  420. WARNING: Certain modems might have a maximum dial timeout shorter than what
  421. Kermit expects it to be.  If Kermit attempts to set register S7 to a value
  422. higher than your modem's maximum, the modem will say "ERROR" and you will get
  423. a "Failure to initialize modem" error.  In that case, use SET DIAL TIMEOUT to
  424. override C-Kermit's calculation of the timeout value with the highest value
  425. that is legal for your modem, e.g. 60.
  426.  
  427. If you DIAL a modem, disconnect, then SET HOST or TELNET, and then HANGUP,
  428. Kermit sends the modem's hangup command, such as "+++ATHO".  There is no good
  429. way to avoid this, because this case can't reliably be distinguished from the
  430. case in which the user does SET HOST <terminal-server>, SET MODEM TYPE <name>,
  431. DIAL.  In both cases we have a valid modem type selected and we have a network
  432. connection.  If you want to DIAL and then later make a regular network
  433. connection, you will have to SET MODEM TYPE NONE or SET MODEM HANGUP RS232 to
  434. avoid this phenomenon.
  435.  
  436. The SET MODEM KERMIT-SPOOF command works only for Telebit and US Robotics
  437. modem types; it is OFF by default.  You may wish to experiment with large
  438. packets (1K or greater) and various window sizes with spoofing disabled in the
  439. modem.  In most situations the transfer rates achieved by Kermit with sliding
  440. windows and long packets are better than with protocol spoofing turned on.
  441. Also, attribute (A) packets are not passed by Telebit modems with spoofing
  442. enabled so if they are desired spoofing must be turned off.
  443.  
  444. Some modems have a feature called adaptive dialing.  When they are told to
  445. dial a number using Tone dialing, they check to make sure that dialtone has
  446. gone away after dialing the first digit.  If it has not, the modem assumes the
  447. phone line does not accept Tone dialing and so switches to Pulse.  When
  448. dialing out from a PBX, there is almost always a secondary dialtone.
  449. Typically you take the phone off-hook, get the PBX dialtone, dial "9" to get
  450. an outside line, and then get the phone company's dialtone.  In a situation
  451. like this, you need to tell the modem to expect the secondary dialtone.  On
  452. Hayes and compatible modems, this is done by putting a "W" in the dial string
  453. at the appropriate place.  For example, to dial 9 for an outside line, and
  454. then 7654321, use ATDT9W7654321.  In Kermit 95, this is accomplished with:
  455.  
  456.   SET PBX-OUTSIDE-PREFIX 9W
  457.  
  458. (replace "9" with whatever your PBX's outside-line prefix is).
  459.  
  460. DEC modems...  Reportedly, these don't work right when connected to a DEC
  461. terminal server -- result codes are never reported (on the other hand, this
  462. might be a modem configuration problem).  Dialing "by hand", "blind" still
  463. works.  Also, reportedly "For people who do have DEC modems directly connected
  464. to DEC computers the DF03, DF100-series, and DF200-series modem dialers should
  465. work.  The only thing that is not straightforward is that the DF124-CA,
  466. DF124-CM modems must use the DF200-series since they speak Digital Modem
  467. Command Language (DMCL) and AT commands.  The Digital Scholar Plus is a DF242
  468. so it uses the DF200-series."
  469.  
  470. If C-Kermit's dialing methods are insufficient for your purposes, you can
  471. write a C-Kermit script program to do the dialing.
  472.  
  473. (7.1) DIALING AND FLOW CONTROL
  474.  
  475. Most modern modems support RTS/CTS (if they support any hardware flow control
  476. at all), but some computers use different RS-232 circuits for the same
  477. purposes, e.g. DTR and CD, or DTR and CTS.  In such cases, you might be able
  478. to make your computer work with your modem by appropriately cross-wiring the
  479. circuits in the cable connector, for example the computer's DTR to the modem's
  480. RTS, and modem's CD to the computer's CTS.  HOWEVER, C-Kermit does not know
  481. you have done this.  So if you have (say) SET FLOW DTR/CD, C-Kermit will make
  482. no attempt to tell the modem to use RTS/CTS.  You probably did this yourself
  483. when you configured the modem.
  484.  
  485. (7.2) ESCAPE SEQUENCE GUARD TIME
  486.  
  487. A "TIES" (Time-Independent Escape Sequence) modem does not require any guard
  488. time around its escape sequence.  The following text:
  489.  
  490. +++ATH0
  491.  
  492. if sent through a TIES modem, for example because you were uploading this
  493. file through it, could pop the modem back into command mode and make it hang
  494. up the connection.  Newer versions of the Telebit T1600 and T3000 (version
  495. LA3.01E firmware and later), and all WorldBlazers, use TIES.
  496.  
  497. Although the probability of "+++" appearing in a Kermit packet is markedly
  498. lower than with most other protocols (see the File Transfer section below), it
  499. can still happen under certain circumstances.  It can also happen when using
  500. C-Kermit's TRANSMIT command.  If you are using a Telebit TIES modem, you can
  501. change the modem's escape sequence to an otherwise little-used control
  502. character such as Ctrl-_ (Control-Underscore):
  503.  
  504.   AT S2=31
  505.  
  506. A sequence of three consecutive Ctrl-_ characters will not appear in a
  507. Kermit packet unless you go to extraordinary lengths to defeat more than a few
  508. of Kermit's built-in safety mechanisms.  And if you do this, then you should
  509. also turn off the modem's escape-sequence recognition altogether:
  510.  
  511.   AT S48=0 S2=255
  512.  
  513. But when escape sequence recognition is turned off, "modem hangup"
  514. (<pause>+++<pause>ATH0<CR>) will not work, so you should also be sure to SET
  515. DIAL MODEM-HANGUP OFF.
  516.  
  517.  
  518. (8) TERMINAL SERVERS
  519.  
  520. How to DIAL from a TCP/IP reverse terminal server (modem server):
  521.  
  522.  1. (only if necessary) SET TELNET ECHO REMOTE
  523.  2. SET HOST <terminal-server-ip-name-or-address> [ <port> ]
  524.  3. SET MODEM <modem-type>
  525.  4. (only if necessary) SET DIAL HANGUP OFF
  526.  5. DIAL <phone-number>
  527.  
  528. The order is important.
  529.  
  530. Watch out for terminal server's escape character -- usually a control
  531. character such as Ctrl-Circumflex (Ctrl-^).  Don't unprefix it in Kermit !
  532.  
  533. Ciscos -- must often be told to "terminal download"...  Cisco ASM models don't
  534. have hardware flow control in both directions.
  535.  
  536. Many terminal servers only give you a 7-bit connection, so if you can't make
  537. it 8-bit, tell Kermit to "set parity space".
  538.  
  539. The following story, regarding trouble transferring 8-bit files through a
  540. reverse terminal server, was contributed by an Annex terminal server user
  541. (begin quote):
  542.  
  543. Using C-Kermit on an HP 9000 712/80 running the HP-UX 10.0 operating system.
  544. The HP was connected to a Xylogics Annex MICRO-ELS-UX R7.1 8 port terminal
  545. server via ethernet.  On the second port of the terminal server is an AT&T
  546. Paradyne 3810 modem, which is connected to a telephone line.  There is a
  547. program which runs on the HP to establish a Telnet connection between a serial
  548. line on the Annex and a character special file on the HP (/dev file).  This is
  549. an Annex specific program called rtelnet (reverse telnet) and is provided with
  550. the terminal server software. The rtelnet utility runs on top of the
  551. pseudo-terminal facility provided by UNIX.  It creates host-originiated
  552. connections to devices attached ot Annex serial ports.  There are several
  553. command line arguments to be specified with this program: the IP address of
  554. the terminal server, the number of the port to attach to, and the name of the
  555. pseudo-device to create.  In addition to these there are options to tell
  556. rtelnet how to operate on the connect: -b requests negotiation for Telnet
  557. binary mode, -d turns on socket-leve debugging, -f enables "connect on the
  558. fly" mode, -r removes the device-name if it already exists, etc.  The most
  559. important of these to be specified when using 8 data bits and no parity, as we
  560. found out, was the -t option.  This creates a transparent TCP connection to
  561. the terminal server.  Again, what we assumed to be happening was that the
  562. rtelnet program encountered a character sequence special to itself and then
  563. "eating" those kermit packets.  I think this is all of the information I can
  564. give you on the configuration, short of the values associated with the port on
  565. the terminal server.  If I can provide any other details, just let me know.
  566. Thanks again for your help.
  567.  
  568. (end quote)
  569.  
  570.  
  571. (9) TERMINAL EMULATION
  572.  
  573. Except for the Windows, OS/2, and Macintosh versions, C-Kermit does not
  574. emulate any kind of terminal.  Rather, it acts more or less as a "transparent
  575. pipe", passing the characters you type during a CONNECT session to the remote
  576. host, and sending the characters received from the remote host to your screen.
  577. Whatever is controlling your keyboard and screen provides the specific
  578. terminal emulation: a real terminal, a PC running a terminal emulator, etc, or
  579. (in the case of a self-contained workstation) your console driver, a terminal
  580. window, xterm, etc.
  581.  
  582. There are several exceptions to the "transparent pipe" rule:
  583.  
  584.  - During a TELNET ("set host") session, C-Kermit itself executes the
  585.    TELNET protocol and performs TELNET negotiations.  (But it does not
  586.    perform TN3270 protocol or any other type of 3270 terminal emulation.)
  587.  
  588.  - If you have changed your keyboard mapping using SET KEY, C-Kermit replaces
  589.    the characters you type with the characters or strings they are mapped to.
  590.  
  591.  - If you SET your TERMINAL CHARACTER-SET to anything but TRANSPARENT,
  592.    C-Kermit translates your keystrokes (after applying any SET KEY
  593.    definitions) before transmitting them, and translates received characters
  594.    before showing them on your screen.
  595.  
  596.  - If your remote and/or local TERMINAL CHARACTER-SET is an ISO 646 7-bit
  597.    national character set, such as German, French, Italian, Swedish, etc, or
  598.    Short KOI used for Cyrillic, C-Kermit's CONNECT command automatically skips
  599.    over ANSI escape sequences to avoid translating their characters.  Only
  600.    ANSI/ISO standard (VT100/200/300-like) 7-bit escape sequence formats are
  601.    supported for this purpose, no proprietary schemes like H-P, Televideo,
  602.    Tektronix, etc.
  603.  
  604.  - If your version of C-Kermit includes SET TERMINAL APC command, then
  605.    C-Kermit's CONNECT command will handle APC escape sequences if TERMINAL
  606.    APC is not set to OFF (which is the default).
  607.  
  608. If you are running C-Kermit under a console driver, or in a terminal window,
  609. that emulates the VT100, and use C-Kermit to log in to a VMS system, the
  610. console driver or terminal window (not Kermit) is supposed to reply to the
  611. "what are you?" query (ESC Z) from the VAX.  If it doesn't, and you can't make
  612. it do so, then you can (a) live with the "unknown terminal" problem; (b) tell
  613. VMS to SET TERMINAL/DEVICE=VT100; (c) program a key using SET KEY to send the
  614. appropriate sequence and then punch the key at the right time; or (d) use the
  615. VMSLOGIN macro that is defined in CKERMIT.INI to do this for you
  616. automatically.
  617.  
  618. SET SESSION-LOG { TEXT, BINARY }, which is effective in UNIX and AOS/VS but
  619. not other C-Kermit versions, removes CR, DEL, NUL, XON, and XOFF characters
  620. ("Using C-Kermit" neglects to mention that XON and XOFF are removed).  The
  621. TEXT-mode setting is ineffective during SCRIPT command execution, as well as
  622. on X.25 connections.
  623.  
  624.  
  625. (10) KEY MAPPING
  626.  
  627. Except in the terminal-emulating versions, C-Kermit's key mapping facilities
  628. are limited to normal "ASCII" keys, and cannot be used with function keys,
  629. arrow keys, arcane key combinations, etc.  Since C-Kermit runs on such a wide
  630. variety of hardware platforms (including, for example, more than 360 different
  631. UNIX platforms), it is not possible for C-Kermit to support every conceivable
  632. keyboard under every release of every UNIX (or VMS, or ...) product on every
  633. different kind of computer possibly under all manner of different console
  634. drivers.
  635.  
  636. In technical terms, C-Kermit uses the read() function to read keystrokes, and
  637. read() returns a single byte (value 0 through 255).  C-Kermit's SET KEY
  638. function applies to these single-byte codes.  "Extended function" keys, such
  639. as F-keys, arrow keys, etc, usually return either a 2-byte "scan code" or else
  640. a character string (such as an escape sequence like "ESC O p").  In both
  641. cases, C-Kermit has no way to tell the difference between such multibyte key
  642. values, and the corresponding series of single-byte key values.  This could
  643. only be done by accessing the keyboard at a much lower level in a highly
  644. system-dependent manner, probably requiring tens of thousands of lines of code
  645. to support even a sampling of the most popular workstation / OS combinations.
  646.  
  647. However, most workstation console drivers (terminal emulation windows, etc)
  648. include their own key-mapping facility.  For example, on an IBM RS/6000, the
  649. AIXterm program (in whose window you would run C-Kermit) allows rebinding of
  650. the F1-F12 keys to arbitrary strings.  The same might or might not be true of
  651. DECterm windows, Sun "vttool" or "crttool" windows, etc.  Consult the
  652. technical documentation for your workstation or emulator.
  653.  
  654. The SET KEY command (except in OS/2) does not allow a key definition to be
  655. (or contain) the NUL (\0) character.
  656.  
  657.  
  658. (11) THE TRANSMIT COMMAND
  659.  
  660. Session logging is inactive during the TRANSMIT command, even if you have
  661. given a LOG SESSION command.
  662.  
  663.  
  664. (12) FILE TRANSFER
  665.  
  666. If you have a multihop connection, with the interior nodes in CONNECT
  667. mode (Kermit, Telnet, Rlogin, or any other), you can expect (a) file transfer
  668. to be slower, and (b) the connection to be less transparent (to control
  669. characters, perhaps to the 8th bit) than a more direct connection.
  670.  
  671. The recovery feature (RESEND command) that was added in edit 190 works only
  672. for binary-mode transfers.  In order for this feature to be useful at all, the
  673. default for SET FILE INCOMPLETE was changed from DISCARD to KEEP.  Otherwise
  674. an interrupted transfer would leave no partial file behind unless you had
  675. remembered to change the default.  But now you have to pay closer attention to
  676. Kermit's messages to know whether a transfer succeeded or failed --
  677. previously, if it failed, the file would not show up on the receiving end at
  678. all; in edit 190 and later, you'll get a partial file which could easily be
  679. mistaken for the complete file unless you change the default back to DISCARD
  680. or read the screen messages, or keep a transaction log.
  681.  
  682. Watch out for SET FILE COLLISION RENAME, especially when used in conjunction
  683. with recovery.  Recall that this option (which is NOT the default) renames
  684. the incoming file if a file already exists with the same name (the default is
  685. to rename the previously existing file, and store the incoming file with its
  686. own name).  It is strongly recommended that you do not use SET FILE COLLISION
  687. RENAME if you ever intend to use the recovery feature:
  688.  
  689.  . When the file is first received by C-Kermit, its name will be changed if
  690.    another file already has the same name.  When you RESEND the same file
  691.    after a failure, C-Kermit will probably try to append the re-sent portion
  692.    to the wrong file.
  693.  
  694.  . Assuming that you get RESEND to work with FILE COLLISION RENAME, C-Kermit,
  695.    when receiving the remainder of the file during a RESEND operation, will
  696.    report back the wrong name.  Nothing can be done about this because the
  697.    name is reported back before the receiving Kermit program finds out that
  698.    it is a recovery operation.   
  699.  
  700. Automatic directory creation for received files does not work for pathnames
  701. given in the "-a" command-line argument.
  702.  
  703. There are no command-line arguments for "set file names { literal, converted }"
  704. or "set { send, receive } pathnames { on, off }", but you can include these
  705. (or any other) commands on the command line in the -C option string.
  706.  
  707. When referring to MS-DOS, Windows, Atari ST, OS/2, or other file
  708. specifications that contain backslash characters in a C-Kermit command, you
  709. might have to double each backslash, for example:
  710.  
  711.   C-Kermit>get c:\\directory\\foo.txt
  712.  
  713. This is because backslash is used in C-Kermit commands for introducing special
  714. character codes, variables, functions, etc.  If you are sending this GET
  715. command to another copy of C-Kermit running as a server, for example on OS/2
  716. or the Atari ST, it too treats backslashes as prefix characters, so you will
  717. need 4 (yes, 4) copies of each backslash:
  718.  
  719.   C-Kermit>get c:\\\\directory\\\\foo.txt
  720.  
  721. But read about the new command, SET COMMAND QUOTING OFF, in the manual.
  722.  
  723. ANOTHER NOTE: In Kermit 95, this restriction is lifted as far as referring 
  724. to files on the local PC.  You can now refer to these files using natural PC
  725. notation, e.g.
  726.  
  727.   C-Kermit>send c:\letters\oofa.txt
  728.  
  729. Attempting to cancel local-mode file reception at a very early stage (i.e.
  730. before data packets are exchanged) with X or Z does not work.  Workarounds:
  731. Use E or Ctrl-C instead, or wait until the first data packets are sent.
  732.  
  733. If you cancel a transfer that is underway using X or Z, and a lot of window
  734. slots are in use, it might take a long time for the cancellation to take
  735. effect, especially if you do this on the receiving end; that's because a lot
  736. of packets might already be on their way to you.  In that case, just be
  737. patient and let Kermit "drain" them.
  738.  
  739. If C-Kermit is sending a file, remote-mode packet-mode breakout (Ctrl-C Ctrl-C
  740. by default) is not effective until after C-Kermit sends its first packet.  If
  741. C-Kermit is receiving a file or is in server mode, it will be effective right
  742. away.  In the former case, the SET DELAY value determines the earliest time at
  743. which you can break out of packet mode.
  744.  
  745. Some communication programs have errors in their implementation of Kermit
  746. attribute packets.  If you get an error message from your communication
  747. program like "Attribute error", tell C-Kermit to SET ATTRIBUTES OFF.  Better
  748. yet, switch to a real Kermit program, such as MS-DOS Kermit.
  749.  
  750. When using C-Kermit to transfer files with the HP48SX calculator, you must
  751. SET FLOW NONE.  The HP48SX does not support flow control, and evidently also
  752. becomes confused if you attempt to use it.  You might also need to use
  753. SET SEND PAUSE 100 (or other number).
  754.  
  755. The fullscreen file transfer display will not work right if your terminal type
  756. is set incorrectly, or is not known to the host operating system.  Even when
  757. it does work, it might slow down your file transfers a bit, especially on
  758. high-speed network connections.  On certain small computers, it has been
  759. reported to cause increased disk activity due to swapping or paging.  The
  760. fullscreen display is not particularly useful with speaking or Braille devices.
  761. In these cases, use SET FILE DISPLAY CRT or SET FILE DISPLAY SERIAL.
  762.  
  763. If you have trouble transferring files over a TCP/IP connection, give the
  764. command:
  765.  
  766.   SET PARITY SPACE
  767.  
  768. and try again.  If that doesn't work, also try a shorter packet length.
  769.  
  770. On the other hand, if file transfers through a TCP/IP connection work, but are
  771. very slow, use a longer packet length, 2000 or more, and also try increasing
  772. the window size.  Also, make sure FLOW is NONE since TCP/IP handles flow
  773. control itself, and XON/XOFF processing only slows things down.
  774.  
  775. Some communication software claims to implement sliding windows, but does so
  776. incorrectly.  If sliding window transfers fail, set C-Kermit's window size to
  777. the smallest one that works, for example:
  778.  
  779.   SET WINDOW 1
  780.  
  781. The UNIX version of C-Kermit discards carriage returns when receiving files
  782. in text mode.  Thus, "bare" carriage returns (sometimes used to achieve
  783. overstriking) are lost.
  784.  
  785. SET FILE COLLISION BACKUP is the default.  This means:
  786.  
  787.  - If you send the same file lots of times, there will be many backup files.
  788.    There is no automatic mechanism within Kermit to delete them, no notion of
  789.    a "version retention count", etc.
  790.  
  791.  - If a file arrives that has the same name as a directory, the file transfer
  792.    fails.  Send the file with another name, or use SET FILE COLLISION RENAME.
  793.  
  794.  - If the directory lacks write permission, the file transfer fails even if
  795.    you have write access to the file that is being backed up; in that case,
  796.    switch to SET FILE COLLISION OVERWRITE or APPEND, or send to a different
  797.    directory.
  798.  
  799. SET FILE COLLISION UPDATE depends on the date/time stamp in the attribute
  800. packet.  However, this is recorded in local time, not GMT, and there is no
  801. indication of time zone.  The time is expressed to the precision of 1 second,
  802. but some file systems do not record with this precision -- for example, MS-DOS
  803. records the file date/time only to the nearest 2 seconds.  This might cause
  804. update operations to send more files than necessary.
  805.  
  806. SET FILE COLLISION OVERWRITE is risky, use it with caution.  Under certain
  807. conditions, the existing file can be deleted even if the incoming file is
  808. refused.
  809.  
  810. This paragraph does NOT apply to UNIX, where, as of C-Kermit 6.1, C-Kermit
  811. pipes incoming mail and print material directly the mail or print program:
  812. When C-Kermit is receiving files from another Kermit program that has been
  813. given the MAIL or REMOTE PRINT command, C-Kermit follows the current filename
  814. collision action.  This can be disconcerting if the action was (for example)
  815. BACKUP, because the existing file will be renamed, and the new file will be
  816. mailed (or printed) and then deleted.  Kermit cannot temporarily change to
  817. RENAME because the file collision action occurs when the filename packet is
  818. received, and the PRINT or MAIL disposition only comes later, in the Attribute
  819. packet.
  820.  
  821. The STATISTICS command will produce an incorrect efficiency report if (a) it
  822. does not know the true communication speed (e.g. on a network connection), or
  823. (b) it knows the true serial interface speed to a modem, but the modem is
  824. using a different communication speed with the other modem.  Similarly, in
  825. these circumstances, C-Kermit's automatic calculation of the packet timeout
  826. interval might also be incorrect, which can cause file transfers to fail.  One
  827. solution to the latter problem is to SET SEND and RECEIVE TIMEOUT to
  828. appropriate values for your true communication speed and packet length.
  829.  
  830. Execution of multiple file transfers by C-Kermit from a command file when
  831. in remote mode might exhibit long delays between each transfer.  To avoid
  832. this, just include the command "SET DELAY 0" in your command file before any
  833. of the file-transfer commands.
  834.  
  835.  
  836. (13) SCRIPT PROGRAMMING
  837.  
  838. 13.1. Comments Versus the SCRIPT Command
  839.  
  840. Remember that ";" and "#" introduce comments when (a) they are the first
  841. character on the line, or (b) they are preceded by at least one blank or
  842. tab.  Thus constructions like:
  843.  
  844.   INPUT 5 ;
  845.   SCRIPT ~0 #--#--# 
  846.  
  847. must be coded using backslash notation to keep the data from being ignored:
  848.  
  849.   INPUT 5 \59            ; 59 is the decimal ASCII code for ";"
  850.   SCRIPT ~0 \43--#--#        ; 43 is the decimal ASCII code for "#"
  851.  
  852. or, more simply:
  853.  
  854.   INPUT 5 \;                    ; Just quote the semicolon
  855.   SCRIPT ~0 \#--#--#            ; Just quote the "#"
  856.  
  857. 13.2. Alphabetic Case and the INPUT Command
  858.  
  859. INPUT and REINPUT caseless string comparisons do not work for non-ASCII
  860. (international) characters.  Workaround: SET INPUT CASE OBSERVE.  Even then,
  861. the "lexically less than" and "lexically greater than" operations (IF LLT, IF
  862. LGT) probably won't work as expected.  The same is true for the
  863. case-conversion functions \Flower() and \Fupper().  C-Kermit does not know the
  864. collating sequence for different character sets and languages.  (On the other
  865. hand, it might work depending on such items as how Kermit was linked, whether
  866. your operating supports "locales", etc)
  867.  
  868. 13.3. NUL (0) Characters in C-Kermit Commands
  869.  
  870. You can't include a NUL character (\0) in C-Kermit command text without
  871. terminating the character string in which it appears.  For example:
  872.  
  873.   echo In these brackets [\0] is a NUL
  874.  
  875. will echo "In these brackets [".  This applies to ECHO, INPUT, OUTPUT, and all
  876. other commands (but you can represent NUL by "\N" in an OUTPUT string).  This
  877. is because C-language strings are terminated internally by the NUL character,
  878. and it allows all of C-Kermit's string comparison and manipulation functions
  879. to work in the normal "C" way.
  880.  
  881. To illustrate:
  882.   INPUT 5 \0
  883. is equivalent to:
  884.   INPUT 5
  885. and:
  886.   INPUT 5 ABC\0DEF
  887. is equivalent to:
  888.   INPUT 5 ABC
  889.  
  890. INPUT operations discard and ignore NUL characters that arrive from the
  891. communication device, meaning that they do not figure into matching operations
  892. (e.g. A<NUL>B matches AB); they are not deposited in the INPUT buffer
  893. (\v(input)); and they are not counted in \v(incount), with two exceptions:
  894.  
  895.   1. An arriving NUL character restarts the INPUT SILENCE timer.
  896.  
  897.   2. An arriving NUL character terminates the INPUT command with the
  898.      SUCCESS condition if the INPUT command was given an empty search
  899.      string.  In this case \v(incount) is set to 1.
  900.  
  901. Also, the \v(inchar) variable is null (completely empty) if the last INPUT
  902. character was NUL.  That is, there is no way to tell only by looking at
  903. \v(inchar) the difference between a NUL that was INPUT and no INPUT at all.
  904. If the INPUT command succeeded but \v(inchar) is empty, then a NUL character
  905. was input.  Also, \v(incount) will be set to 1.
  906.  
  907. \v(incount) and \v(inchar) are NOT affected by the CLEAR command.
  908.  
  909. 13.4. \ffiles() and \fnextfile() Peculiarities
  910.  
  911. The following script program:
  912.  
  913.   for \%i 1 \ffiles(oofa.*) 1 {
  914.       send \fnextfile()
  915.   }
  916.  
  917. does not work as expected in C-Kermit 6.0 and earlier.  The SEND command (and
  918. any other command that parses a filename, including TAKE) implicitly calls the
  919. same internal function that \ffiles() calls, and thus destroys the file list
  920. set up in the first call to \ffiles(). In 6.1 and later, a separate list is
  921. kept, so the following technique is not needed in the newer versions.
  922.  
  923. To work around the problem in C-Kermit 6.0 and earlier: (1) give the wild
  924. filespec to \ffiles(); (2) loop through the file list and assign each filename
  925. to an array element; (3) use the array of filenames in subsequent file-related
  926. commands.  Example:
  927.  
  928.   asg \%n \ffiles(\%1)
  929.   declare \&f[\%n]
  930.   for \%i 1 \%n 1 { asg \&f[\%i] \fnextfile() }
  931.   for \%i 1 \%n 1 {
  932.       send \&f[\%i]
  933.   }
  934.  
  935. 13.5. Commands That Have Only Local Effect
  936.  
  937. Certain settings are local to each command level, meaning that subordinate
  938. command levels (macros or command files) can change them without affecting
  939. their values at higher command levels.  When a new command level is invoked,
  940. the value is inherited from the previous level.  These settings are:
  941.  
  942.   CASE
  943.   COUNT and \v(count)
  944.   INPUT CASE
  945.   INPUT TIMEOUT
  946.   MACRO ERROR
  947.   TAKE ERROR
  948.  
  949. This arrangement allows CASE, TIMEOUT, and ERROR settings, which are used to
  950. control automatic exit from a command file or macro upon error, to be
  951. automatically restored when the command file or macro exits.
  952.  
  953. The COUNT variable follows this rule too, which permits nested SET COUNT /
  954. IF COUNT loops, as in this example in which the inner loop counts down from
  955. the current COUNT value of the outer loop (try it):
  956.  
  957.   DEFINE INNER WHILE COUNT { WRITE SCREEN {   Inner:}, SHOW COUNT }
  958.   SET COUNT 5
  959.   WHILE COUNT { WRITE SCREEN Outer:, SHOW COUNT, DO INNER }
  960.  
  961. Keep in mind that an inferior command level cannot manipulate the COUNT
  962. value held by a higher level.  For example:
  963.  
  964.   DEFINE OOFA SHOW COUNT, IF COUNT GOTO LOOP
  965.   SET COUNT 5
  966.   :LOOP
  967.   OOFA
  968.   ECHO Done
  969.  
  970. results in an infinite loop; the COUNT value remains at 5 because it is never
  971. decremented at the same level at which it was set.
  972.  
  973. NOTE: "WHILE COUNT" did not work prior to edit 095 of ckuusr.c, 19 Jan 93.
  974.  
  975. 13.6. Literal Braces in Function Calls
  976.  
  977. Since braces are used in function calls to indicate grouping, there is no way
  978. to pass literal braces to the function itself.  Solution: Define a variable
  979. containing the string that has braces.  Example:
  980.  
  981.   define \%a ab{cd
  982.   echo \fsubstring(\%a)
  983.   ab{cd  
  984.  
  985. If the string is to start with a leading brace and end with a closing brace,
  986. then double braces must appear around the string (which itself is enclosed in
  987. braces):
  988.  
  989.   define \%a {{{foo}}}
  990.   echo \fsubstring(\%a)
  991.   {foo}
  992.  
  993. This also works for any other kind of string:
  994.  
  995.   define \%a {{ab{cd}}
  996.   echo \fsubstring(\%a)
  997.   ab{cd  
  998.  
  999. 13.7. Defining Variables on the C-Kermit Command Line
  1000.  
  1001. To define variables on the C-Kermit command line, use the -C command-line
  1002. option with one or more DEFINE or ASSIGN commands.  Note that the C-Kermit
  1003. command line must cope with the quoting rules of your shell.  Examples:
  1004.  
  1005.   kermit -C "define \\%a foo, define phonenumber 7654321"
  1006.  
  1007. In this case we follow UNIX quoting rules by doubling the backslash.  Once
  1008. C-Kermit starts, the \%a and \m(phonenumber) variables are defined as
  1009. indicated and can be used in the normal way.
  1010.  
  1011. In DOS or Windows or OS/2 the command would be:
  1012.  
  1013.   kermit -C "define \%%a foo, define phonenumber 7654321"
  1014.  
  1015. Here we need to double the percent sign rather than the backslash because
  1016. of DOS shell quoting rules.
  1017.  
  1018. Note that you can not set values for \%1..\%9 this way.  The -C command-line
  1019. option defines a macro called CL_COMMANDS whose definition is the material
  1020. between the quotes, and then executes it.  But \%1..\%9 are local to the macro
  1021. they are passed to or defined in, and cease to exist when the macro exits.
  1022.  
  1023. 13.8. Per-Character Echo Check with the OUTPUT Command
  1024.  
  1025. Sometimes the OUTPUT command must be used to send commands or data to a device
  1026. in "echoplex" mode, meaning that characters must be sent one at a time, and
  1027. the next character can not be sent until the echo from the previous one has
  1028. been received.  For example, a certain PBX might have this characteristic.
  1029. Let's say a Kermit script is used to program the PBX.  If characters are sent
  1030. too fast, they can be lost.  It would seem that the command:
  1031.  
  1032.   SET OUTPUT PACING <milliseconds>
  1033.  
  1034. could be used to take care of this, but the pacing interval is constant and
  1035. must be set large enough to allow even the slowest echo to finish.  If the
  1036. script is large (an actual example is 14,000 lines long), this can cause it
  1037. to take hours longer than it needs to.
  1038.  
  1039. Here is a macro you can use to OUTPUT a string in an Echoplex environment:
  1040.  
  1041.   define XOUTPUT {
  1042.       local \%c
  1043.       set output pacing 0
  1044.       while defined \%1 {
  1045.       asg \%c \fsubstr(\%1,1,1)
  1046.       asg \%1 \fsubstr(\%1,2)
  1047.       output \%c
  1048.       input 2 \%c
  1049.       }
  1050.   }
  1051.  
  1052.  
  1053. Usage: xoutput string-with-no-spaces
  1054.    or: xoutput { string that contains spaces }
  1055. C-Kermit 6.0 or later is required.
  1056.  
  1057. It sends one character at a time and then waits up to 2 seconds for the
  1058. character to be echoed back, but continues to the next character as soon
  1059. as the echo appears, so no time is wasted.  You can add an IF FAIL clause
  1060. after the INPUT in case you want to do something special about failure
  1061. to detect an echo within the timeout period.  Obviously you can also change
  1062. the 2-second limit, and adjust the script in any other desired way.
  1063.  
  1064. (End of CKCBWR.TXT)
  1065.