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

通讯/手机编程

开发平台:

Windows_Unix

  1. C-KERMIT CONFIGURATION INFORMATION                                   -*-text-*-
  2.   As of C-Kermit version:  7.0.197
  3.   This file last updated:  8 February 2000
  4.   Frank da Cruz, Columbia University
  5.   Copyright (C) 1985, 2000,
  6.     Trustees of Columbia University in the City of New York.
  7.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  8.     copyright text in the ckcmai.c module for disclaimer and permissions.
  9. DOCUMENTATION
  10.   Frank da Cruz and Christine M. Gianone, "Using C-Kermit", Second Edition,
  11.   1997, Digital Press / Butterworth-Heinemann, Woburn, MA, ISBN 1-55558-164-1
  12.   US single-copy price: $44.95; quantity discounts available.  Available in
  13.   computer bookstores or directly from Columbia University:
  14.     The Kermit Project
  15.     Columbia University
  16.     612 West 115th Street
  17.     New York NY  10025-7799  USA
  18.     Telephone: +1 (212) 854-3703
  19.     Email: kermit-orders@columbia.edu
  20.     Web: http://www.columbia.edu/kermit/
  21.   The CKERMIT2.TXT file contains supplementary info for C-Kermit 7.0 to be
  22.   used until the 3rd edition of the manual is ready.
  23. WHAT IS IN THIS FILE
  24. This file is for C-Kermit developers.  It explains compilation options,
  25. feature selection, and compilation problem-solving, as they (should) apply to
  26. all versions of C-Kermit: UNIX, VMS, OS/2, and the rest.
  27. CONTENTS
  28.   0. OVERVIEW
  29.   1. FILE TRANSFER
  30.   2. SERIAL COMMUNICATION SPEEDS
  31.   3. FULLSCREEN FILE TRANSFER DISPLAY
  32.   4. CHARACTER SETS
  33.   5. APC EXECUTION
  34.   6. PROGRAM SIZE
  35.      6.1. When Memory Is Not a Problem
  36.      6.2. Removing Features
  37.      6.3. Changing Buffer Sizes
  38.      6.4. Other Size-Related Items
  39.      6.5. Space/Time Tradeoffs
  40.   7. DIALER SUPPORT
  41.   8. NETWORK SUPPORT
  42.      8.1. TCP/IP
  43.   8.1.1. Firewalls
  44.   8.1.2. Solving Compilation and Linking Problems
  45.   8.1.3. Enabling Host Address Lists
  46.   8.1.4. Enabling Telnet NAWS
  47.           8.1.5. Enabling Incoming TCP/IP Connections
  48.      8.2. X.25
  49.      8.3. Other Networks
  50.   9. EXCEPTION HANDLING
  51.  10. SECURITY FEATURES
  52.  11. ENABLING SELECT()
  53.  12. I/O REDIRECTION
  54.  13. FLOATING-POINT TIMERS
  55.  14. SPECIAL CONFIGURATIONS
  56.  APPENDIX I: SUMMARY OF COMPILE-TIME OPTIONS
  57. 0. OVERVIEW
  58. This file gives more-or-less system-independent configuration information for
  59. C-Kermit 5A and later.  The major topics covered include program size (and how
  60. to reduce it), how to include or exclude particular features, notes on modem
  61. and network support, and a list of C-Kermit's compile-time options.
  62. For details about your particular operating system, consult the system-specific
  63. installation instructions file:
  64.   CK?INS.TXT
  65. (? = U for UNIX, V for VMS, etc, for example, CKUINS.TXT for UNIX, CKVINS.TXT
  66. for VAX/VMS, CKDINS.TXT for Data General AOS/VS, etc).  Also consult the
  67. following files (use lowercase on UNIX):
  68.   CKAAAA.TXT   Explanation of file naming conventions
  69.   CKCPLM.TXT   C-Kermit "program logic manual"
  70.   CK?KER.HLP   System-specific help file, if any
  71.   CK?KER.MAK   System-specific build procedure
  72.   CKCBWR.TXT   "Beware file": C-Kermit bugs, limitations, workarounds
  73.   CK?BWR.TXT   System-specific "beware file"
  74.   CKERMIT2.TXT User-level documentation for new features since "Using
  75.                C-Kermit", 2nd Edition, was published.
  76.   CKCnnn.TXT   Program edit history for edit nnn, e.g. CKC195.TXT.
  77. 1. FILE TRANSFER
  78. Prior to version 7.0, C-Kermit was always built with the most conservative
  79. Kermit file-transfer protocol defaults on every platform: no control-character
  80. prefixing, 94-byte packets, and a window size of 1.
  81. Starting in version 7.0, fast settings are the default for UNIX and VMS.  To
  82. override these at compile time, include:
  83.   -DNOFAST
  84. in the C compiler CFLAGS.  Even with the fast defaults, it will drop down to
  85. whatever window and packet sizes requested by the other Kermit, if these are
  86. smaller, when sending files (except for control-character unprefixing, which
  87. is not negotiated, and which is now set to CAUTIOUS rather than NONE at
  88. startup).  C-Kermit's settings prevail when it is receiving.  To build with
  89. fast defaults for other platforms, add:
  90.   -DCK_FAST
  91. to CFLAGS.
  92. 2. SERIAL COMMUNICATION SPEEDS
  93. As of 6 September 1997, a new simplified mechanism for obtaining the list
  94. of legal serial interface speeds is in place:
  95.  . If the symbol TTSPDLIST is defined, the system-dependent routine
  96.    ttspdlist() is called at program initialization to obtain the list.
  97.  . This symbol should be defined only for C-Kermit implementations that
  98.    have implemented the ttspdlist() function, typically in the ck?tio.c
  99.    module.  See ckutio.c for an example.
  100.  . TTSPDLIST is automatically defined in ckcdeb.h for UNIX.  Add the
  101.    appropriate #ifdefs for other platforms when the corresponding
  102.    ttspdlist() functions are filled in.
  103.  . If TTSPDLIST is (or normally would be) defined, the old code (described
  104.    below) can still be selected by defining NOTTSPDLIST.
  105. The ttspdlist() function can obtain the speeds in any way that works.  For
  106. example, based simply on #ifdef Bnnnn..#endif (in UNIX).  Although it might be
  107. better to actually check each speed against the currently selected hardware
  108. interface before allowing it in the array, there is usually no passive and/or
  109. reliable and safe way to do this, and so it's better to let some speeds into
  110. the array that might not work, than it is to erroneously exclude others.
  111. Speeds that don't work are caught when the SET SPEED command is actually given.
  112. Note that this scheme does not necessarily rule out split speed operation,
  113. but effectively it does in C-Kermit as presently constituted since there are
  114. no commands to set input and output speed separately (except the special
  115. case "set speed 75/1200").
  116. Note that some platforms, notably AIX 4.2 and 4.3, implement high serial
  117. speeds transparently to the application, e.g. by mapping 50 bps to 57600 bps,
  118. and so on.  See (e.g.) ckubwr.txt for examples.
  119. That's the whole deal.  When TTSPDLIST is *not* defined, the following applies:
  120. Speeds are defined in two places: the SET SPEED keyword list in the command
  121. parser (as of this writing, in the ckuus3.c source file), and in the system-
  122. dependent communications i/o module, CK?TIO.C, functions ttsspd() (set speed)
  123. and ttgspd() (get speed).  The following speeds are assumed to be available
  124. in all versions:
  125.   0, 110, 300, 600, 1200, 2400, 4800, 9600
  126. If one or more of these speeds is not supported by your system, you'll need
  127. to change the source code (this has never happened so far).  Other speeds
  128. that are not common to all systems have Kermit-specific symbols:
  129.                Symbol       Symbol
  130.   Speed (bps)  to enable    to disable
  131.        50       BPS_50       NOB_50
  132.        75       BPS_75       NOB_75
  133.        75/1200  BPS_7512     NOB_7512
  134.       134.5     BPS_134      NOB_134
  135.       150       BPS_150      NOB_150
  136.       200       BPS_200      NOB_200
  137.      1800       BPS_1800     NOB_1800
  138.      3600       BPS_3600     NOB_3600
  139.      7200       BPS_7200     NOB_7200
  140.     14400       BPS_14K      NOB_14K
  141.     19200       BPS_19K      NOB_19K
  142.     28800       BPS_28K      NOB_28K
  143.     38400       BPS_38K      NOB_38K
  144.     57600       BPS_57K      NOB_57K
  145.     76800       BPS_76K      NOB_76K
  146.    115200       BPS_115K     NOB_155K
  147.    230400       BPS_230K     NOB_230K
  148.    460800       BPS_460K     NOB_460K
  149.    921600       BPS_921K     NOB_921K
  150. and maybe some others...
  151. The ckcdeb.h header file contains default speed configurations for the many
  152. systems that C-Kermit supports.  You can override these defaults by (a)
  153. editing ckcdeb.h, or (b) defining the appropriate enabling and/or disabling
  154. symbols on the CC command line, for example:
  155.   -DBPS_14400 -DNOB_115200
  156. or the "make" command line, e.g.:
  157.   make blah "KFLAGS=-DBPS_14400 -DNOB_115200"
  158. Note: some speeds have no symbols defined for them, because they have never
  159. been needed: 12.5bps, 45.5bps, 20000bps, etc.  These can easily be added if
  160. required (but they will work only if the OS supports them).
  161. IMPORTANT: Adding one of these flags at compile time does not necessarily mean
  162. that you will be able to use that speed.  A particular speed is usable only if
  163. your underlying operating system supports it.  In particular, it needs to be
  164. defined in the appropriate system header file (e.g. in UNIX, cd to
  165. /usr/include and grep for B9600 in *.h and sys/*.h to find the header file
  166. that contains the definitions for the supported speeds), and supported by the
  167. serial device driver, and of course by the physical device itself.
  168. ALSO IMPORTANT: The list of available speeds is independent of how they are
  169. set.  The many UNIXes, for example, offer a wide variety of APIs that are
  170. BSD-based, SYSV-based, POSIX-based, and purely made up.  See the ttsspd(),
  171. ttgspd(), and ttspdlist() routines for illustrations.
  172. The latest entries in this horserace are the tcgetspeed() and ttsetspeed()
  173. routines found in UnixWare 7.  Unlike other methods, they accept the entire
  174. range of integers (longs really) as speed values, rather than certain codes,
  175. and return an error if the number is not, in fact, a legal speed for the
  176. device/driver in question.  In this case, there is no way to build a list of
  177. legal speeds at compile time, since no Bnnnn symbols are defined (except for
  178. "depracated, legacy" interfaces like ioctl()) and so the legal speed list must
  179. be enumerated in the code -- see ttspdlist() in ckutio.c.
  180. 3. FULLSCREEN FILE TRANSFER DISPLAY
  181. New to edit 180 is support for an MS-DOS-Kermit-like local-mode full screen
  182. file transfer display, accomplished using the curses library, or something
  183. equivalent (for example, the Screen Manager on DEC VMS).  To enable this
  184. feature, include the following in your CFLAGS:
  185.   -DCK_CURSES
  186. and then change your build procedure (if necessary) to include the necessary
  187. libraries, usually "curses", perhaps also "termcap" or "termlib":
  188.   "LIBS= -lcurses -ltermcap"
  189.   "LIBS= -lcurses -ltermlib"
  190.   "LIBS= -lcurses"
  191.   "LIBS= -ltermlib"
  192. to pull in the required libraries.  "man curses" for further information, and
  193. search through the makefile for "CK_CURSES" to see many examples.
  194. Plus maybe you'll have to replace "curses" above by "ncurses".
  195. There might still be a complication.  Some implementations of curses reserve
  196. the right to alter the buffering on the output file without restoring it
  197. afterwards, which can leave Kermit's command processing in a mess when the
  198. prompt comes back after a fullscreen file transfer display.  The typical
  199. symptom is that characters you type at the prompt after a file transfer do not
  200. echo until you press the Return (Enter) key.  If this happens to you, try
  201. adding
  202.   -DCK_NEWTERM
  203. to your makefile entry (see comments in screenc() in ckuusx.c for an
  204. explanation).
  205. In SCO Xenix and SCO UNIX, there are two separate curses libraries, one based
  206. on termcap and the other based on terminfo.  The default library, usually
  207. terminfo, is established when the development system is installed.  To
  208. manually select terminfo (at compile time):
  209.   compile -DM_TERMINFO and link -ltinfo
  210. and to manually select termcap:
  211.   compile -DM_TERMCAP and link -ltcap -ltermlib
  212. <curses.h> looks at M_TERMINFO and M_TERMCAP to decide which header files to
  213. use.  /usr/lib/libcurses.a is a link to either libtinfo.a or libtcap.a.  The
  214. C-Kermit compilation options must agree with the version of the curses library
  215. that is actually installed.
  216. NOTE: If you are doing an ANSI-C compilation and you get compile time warnings
  217. like the following:
  218.   Warning: function not declared in ckuusx.c: wmove, printw, wclrtoeol,
  219.   wclear, wrefresh, endwin, etc...
  220. it means that your <curses.h> file does not contain prototypes for these
  221. functions.  The warnings should be harmless.
  222. New to edit 190 is the ability to refresh a messed-up full-screen display,
  223. e.g. after receiving a broadcast message.  This depends on the curses package
  224. including the wrefresh() and clearok() functions and the curscr variable.  If
  225. your version has these, or has code to simulate them, then add:
  226.   -DCK_WREFRESH
  227. The curses and termcap libraries add considerable size to the program image
  228. (e.g. about 20K on a SUN-4, 40K on a 386).  On some small systems, such as the
  229. AT&T 6300 PLUS, curses support can push Kermit over the edge... even though it
  230. compiles, loads, and runs correctly, its increased size apparently makes it
  231. swap constantly, slowing it down to a crawl, even when the curses display is
  232. not in use.  Some new makefile entries have been added to take care of this
  233. (e.g. sys3upcshcc), but similar tricks might be necessary in other cases too.
  234. Also new to edit 190 is an ASCII-graphic percent-done "thermometer".  This is
  235. not included unless you add:
  236.   -DCK_PCT_BAR
  237. to your CFLAGS.
  238. Just below the bar is a running display of the transfer rate, as a flat
  239. quotient of file characters per elapsed seconds so far.  You can change this
  240. to an average that gives greater weight to recent history (0.25 *
  241. instantaneous cps + 0.75 * historical cps) by adding -DCPS_WEIGHTED to
  242. your CFLAGS (sorry folks, this one is not worth a SET command).  You can
  243. choose a second type of weighted average in which the weighting smooths
  244. out progressively as the transfer progresses by adding -DCPS_VINCE to
  245. -DCPS_WEIGHTED.
  246. An alternative to curses is also available at compile time, but should be
  247. selected if your version of Kermit is to be run in local mode only in an ANSI
  248. terminal environment, for example on a desktop workstation that has an ANSI
  249. console driver.  To select this option in place of curses, define the symbol
  250. MYCURSES:
  251.   -DMYCURSES
  252. instead of CK_CURSES.  The MYCURSES option uses built-in ANSI (VT100) escape
  253. sequences, and depends upon your terminal or console driver to interpret them
  254. correctly.
  255. In some C-Kermit builds, we replace printf() via #define printf...  However,
  256. this can cause conflicts with the [n]curses header files.  Various hacks are
  257. required to get around this -- see ckutio.c, ckuusx.c, ckufio.c, ckucmd.c,
  258. etc.
  259. To use the fullscreen display feature, SET FILE DISPLAY FULLSCREEN.  Beware, it
  260. can slow the transfer down a bit (or a lot).  The faster the connection speed,
  261. the more likely the fullscreen display will become the bottleneck.  To test
  262. whether the fullscreen display is slowing your transfers down on a particular
  263. connection, transfer the same with it and without it, and compare the figures
  264. given in the STATISTICS command.  The default file transfer display is still
  265. the old SERIAL ("dots") display, even if you build in curses support.
  266. A compromise between the two styles (new to edit 183), that can be used on any
  267. video display terminal, can be elected at runtime with the SET FILE DISPLAY
  268. CRT.  It relies only on the ability of the terminal to write over the current
  269. line when it receives a bare carriage return.  The same performance comments
  270. apply to this display option.
  271. 4. CHARACTER SETS
  272. By default, C-Kermit is built with support for translation of character sets
  273. for Western European languages (i.e. languages that originated in Western
  274. Europe, but are now also spoken in the Western Hemisphere and other parts of
  275. the world), via ISO 8859-1 Latin Alphabet 1, for Eastern European languages
  276. (ISO Latin-2), Hebrew (and Yiddish), and Cyrillic-alphabet languages (ISO
  277. Latin/Cyrillic).  Many file (local) character sets are supported: ISO 646
  278. 7-bit national sets, IBM code pages, Apple, DEC, DG, NeXT, etc.
  279. To build Kermit with no character-set translation at all, include -DNOCSETS in
  280. the CFLAGS.  To build with no Latin-2, add -DNOLATIN2.  To build with no
  281. Cyrillic, add -DNOCYRIL.  To omit Hebrew, add -DNOHEBREW.  If -DNOCSETS is
  282. *not* included, you'll always get LATIN1.  To build with no KANJI include
  283. -DNOKANJI.  There is presently no way to include Latin-2, Cyrillic, Hebrew, or
  284. Kanji without also including Latin-1.
  285. Unicode support was added in version 7.0, and it adds a fair amount of tables
  286. and code (and this is only a "Level 1" implementation -- a higher level would
  287. also require building in the entire Unicode database).  On a PC with RH 5.2
  288. Linux, building C-Kermit 7.0 Beta 11:
  289.   NOCSETS NOUNICODE NOKANJI   Before    After
  290.    [   ]    [   ]    [   ]    1329014          (Full)
  291.    [   ]    [   ]    [ X ]    1325686          (Unicode but no Kanji)
  292.    [   ]    [ X ]    [   ]    1158837          (All charsets except Unicode)
  293.    [ X ]    [ x ]    [ x ]    1090845          (NOCSETS implies the other two)
  294. Note, by the way, that NOKANJI without NOUNICODE only removes the non-Unicode
  295. Kanji sets (Shift-JIS, EUC-JP, JIS-7, etc).  Kanji is still representable in
  296. UCS-2 and UTF-8.
  297. 5. APC EXECUTION
  298. The Kermit CONNECT module can be coded to execute Application Program Command
  299. escape sequences from the host:
  300.   <ESC>_<text><ESC>
  301. where <text> is a C-Kermit command, or a list of C-Kermit commands separated
  302. by commas, up to about 1K in length.
  303. To date, this feature has been coded into the OS/2, Windows, VMS, OS-9, and
  304. UNIX versions, for which the symbol:
  305.   CK_APC
  306. is defined automatically in ckuusr.h.  For OS/2, APC is enabled at runtime
  307. by default, for UNIX it is disabled.  It is controlled by the SET TERMINAL
  308. APC command.  Configuring APC capability into a version that gets it by
  309. default (because CK_APC is defined in ckuusr.h) can be overridden by including:
  310.   -DNOAPC
  311. on the CC command line.
  312. The autodownload feature depends on the APC feature, so deconfiguring APC
  313. also disables autodownload.
  314. 6. PROGRAM SIZE
  315. (Also see Section 4: Character Sets)
  316. C-Kermit has become a large program, much larger than early versions because
  317. of all the new features, primarily the script programming language, sliding
  318. window packet protocol, and international character set translation.  On some
  319. systems, the size of the program prevents it from being successfully linked
  320. and loaded.  On some others, it occupies so much memory that it is constantly
  321. swapping or paging.  In such cases, you can reduce C-Kermit's size in various
  322. ways, outlined in this section.  The following options can cut down on the
  323. program's size at compile time by removing features or changing the size of
  324. storage areas.
  325. 6.1. When Memory Is Not a Problem
  326. But first, also note that if "memory is no problem" on your system, you can
  327. easily INCREASE the sizes of many things (buffers, command length, macro
  328. length, maximum number of all sorts of things) simply by defining the
  329. following symbol at compile time:
  330.   BIGBUFOK
  331. This symbol is defined for certain platforms by default in ckcdeb.h.  If you
  332. want to override this, use:
  333.   make xxxx KFLAGS=-DNOBIGBUF
  334. 6.2. Removing Features
  335. Features can be removed by defining symbols on the CC (C compiler) command
  336. line.  "-D" is the normal CC directive to define a symbol so, for example,
  337. "-DNODEBUG" defines the symbol NODEBUG.  Some C compilers might use different
  338. syntax, e.g.  "-d NODEBUG" or "/DEFINE=NODEBUG".  For C compilers that do not
  339. take command-line arguments, you can put the corresponding #define statements
  340. in the file CKCSYM.H, for example:
  341. #define NODEBUG
  342. (The #define statement must be on the left margin.)  Here are C-Kermit's
  343. size-related compile-time options.  The ones that take up the most space are
  344. marked by asterisk (*).  If you are desperate to save space, remove debugging
  345. first, rather than some more useful feature.  Remove built-in help only if
  346. absolutely necessary.  The final resort is to remove the interactive command
  347. parser completely, leaving only a UNIX-style command-line interface
  348. ("kermit -s foo").  This cuts the program down to about 25% of its fully
  349. configured size.
  350. * -DNOUNICODE:Add this option to omit Unicode character-set support.
  351. * -DNOCSETS:  Add this option to remove ALL character set support.
  352. * -DNODEBUG:  Add this option to omit all debugging code.
  353.   -DNOTLOG:   Add this option to omit transaction logging.
  354. * -DNOHELP:   Add this option to omit built-in help.
  355.   -DNODISPLAY:Add this option to omit the file-transfer display.
  356.   -DTCPSOCKET:Remove this option to omit TCP/IP support.
  357.   -DSUNX25:   Remove this option to omit SunLink X.25 support.
  358. * -DNONET:    Add this to remove all network support.
  359.   -DNOMSEND:  Add this option to remove the MSEND command.
  360. * -DNOLOCAL:  Add this option to remove all support for making connections.
  361. * -DNODIAL:   Add this option to remove the DIAL command and modem support.
  362. * -DMINIDIAL: Add this option to support only standard &/or generic modem types
  363. * -DNOOLDMODEMS: Add this option to drop support for "old" modem types.
  364. * -DNOCHANNELIO: Add this option to remove the FILE command & related functions
  365.   -DNOXMIT:   Add this option to remove the TRANSMIT command.
  366.   -DNOSCRIPT: Add this option to remove the UUCP-style SCRIPT command.
  367.   -DNOCMDL:   Add this option to remove the command-line option interface.
  368. * -DNOSPL:    Add this option to remove the script programming language.
  369. * -DNOICP:    Add this option to remove the entire interactive command parser.
  370.   -DNOIKSD:   Remove support for the Internet Kermit Service Daemon.
  371.   -DDCMDBUF:  Add this option to allocate command buffers dynamically.
  372.   -DNOLATIN2  Add this option to remove ISO Latin-2 character-set translation.
  373.   -DNOCYRIL:  Add this option to remove Cyrillic character set translation.
  374.   -DNOLATIN2: Add this option to remove Latin-2 character set translation.
  375.   -DNOHEBREW: Add this option to remove Hebrew character set translation.
  376.   -DKANJI:    Omit this option to exclude Kanji character set translation.
  377.   -DNOESCSEQ: Add this option to omit ANSI escape sequence recognition.
  378.   -DNOSERVER: Add this option to remove server mode.
  379.   -DNOSETKEY: Add this option to remove the SET KEY command.
  380.   -DNOPUSH:   Add this option to remove escapes to operating system.
  381.   -DNOFRILLS: Add this option to remove "frills".
  382. * -DNOCURSES: Omit this option to keep the curses library out of Kermit.
  383. * -DNOBIGBUF: Override BIGBUFOK in case it is defined: force smaller buffers.
  384. * -DNOXFER:   Add this option to omit all file-transfer protocols.
  385.   -DSBSIZ=nnnn -DRBSIZ=nnnnn
  386.      Change the overall size of the packet send and receive buffers.
  387. -DNOFRILLS removes various command synonyms; the following top-level commands:
  388. CLEAR, DELETE, DISABLE, ENABLE, GETOK, MAIL, RENAME, TYPE, WHO; and the
  389. following REMOTE commands: KERMIT, LOGIN, LOGOUT, PRINT, TYPE, WHO.
  390. The CK_CURSES option, at least on UNIX, requires C-Kermit be linked with a
  391. large external library (curses or ncurses).  On certain small systems,
  392. C-Kermit programs built this way have been observed to cause swapping and/or
  393. performance problems.  If you include -DNOCURSES, you might also have to edit
  394. the makefile entry to remove all references to "curses", "termcap", and/or
  395. "termlib", etc, from the LIBS clause.
  396. 6.3. Changing Buffer Sizes
  397. (This section is somewhat obsolete -- most modern C-Kermit versions are built
  398. with BIGBUFOK defined, which selects maximum-size packet buffers, plus big
  399. command and other buffers).
  400. There are options to control Kermit's packet buffer allocations.  The
  401. following symbols are defined in ckcker.h in such a way that you can override
  402. them by redefining them in CFLAGS:
  403.   -DMAXSP=xxxx - Maximum send-packet length, default 2048.
  404.   -DMAXRP=xxxx - Maximum receive-packet length, 2048 for UNIX, 1920 for VMS.
  405.   -DSBSIZ=xxxx - Total allocation for send-packet buffers, default 3008.
  406.   -DRBSIZ=xxxx - Total allocation for receive-packet buffers, default 3008.
  407. The program size is affected by SBSIZ and RBSIZ (send and receive packet
  408. buffer size).  These are static character arrays compiled into the program.
  409. If you wish, you can have Kermit allocate packet buffers dynamically at
  410. runtime using malloc() by including the CFLAGS switch:
  411.   -DDYNAMIC
  412. In this case, the default packet and buffers sizes are changed to:
  413.   -DMAXSP=9024 (for UNIX, 2048 for VMS)
  414.   -DMAXRP=9024 (for UNIX, 1920 for VMS)
  415.   -DSBSIZ=9050
  416.   -DRBSIZ=9050
  417. but you can change the packet buffer sizes (not the maximum packet size) at
  418. runtime using the command:
  419.   SET BUFFERS <sbsiz> <rbsiz>
  420. Using dynamic allocation (-DDYNAMIC) reduces storage requirements for the
  421. executable program on disk, and allows more and bigger packets at runtime.
  422. But dynamic allocation might not work on all systems.  Try it.  If it works
  423. for you, there is no reason not to use it.  But if the program hangs or core
  424. dumps, then omit the -DDYNAMIC option from CFLAGS.
  425. 6.4. Other Size-Related Items
  426. To make Kermit compile and load successfully, you might have to change your
  427. build procedure to:
  428.    a. Request a larger ("large" or "huge") model.  This is particularly true
  429.       for 16-bit PC-based UNIX versions.  This is typically done with a -M
  430.       and/or -F switch (see your cc manual or man page for details).
  431.    b. Some systems support overlays.  If the program is too big to be built
  432.       as is, check your loader manual ("man ld") to see if an overlay feature
  433.       is available.  See the 2.10/2.11 BSD example in the UNIX makefile.
  434.    c. Similarly, some systems support "code mapping", which is similar to
  435.       overlays.  Again, see "man ld".
  436. It is also possible to reduce the size of the executable program file in
  437. several other ways:
  438.    a. Include the -O (optimize) compiler switch if it isn't already included
  439.       in your "make" entry (and if it works!).  If your compiler supports
  440.       higher levels of optimization (e.g. -O2), try them.
  441.    b. If your UNIX system supports shared libraries, change the make entry to
  442.       take advantage of this feature.  The way to do this depends on your
  443.       particular system.  Some (like SunOS) do it automatically.  See the NeXT
  444.       entry for an example.
  445.    c. Strip the program image after building ("man strip" for further info),
  446.       or add -s to the LNKFLAGS (UNIX only).  This strips the program of its
  447.       symbol table and relocation information.
  448.    d. Move character strings into a separate file.  See the 2.10 BSD entry
  449.       for an example.
  450. 6.5. Space/Time Tradeoffs
  451. There are over 2000 debug() statements in the program.  If you want to save
  452. both space (program size) and time (program execution time), include -DNODEBUG
  453. in the compilation.  If you want to include debugging for tracking down
  454. problems, omit -DNODEBUG from the make entry.  But when you include debugging,
  455. you have two choices for how it's done.  One definition defines debug() to be
  456. a function call; this is cheap in space but expensive in execution.  The other
  457. defines debug as "if (deblog)" and then the function call, to omit the
  458. function call overhead when the debug log is not active.  But this adds a lot
  459. of space to the program.  Both methods work, take your choice; IFDEBUG is
  460. preferred if memory is not a constraint but the computer is likely to be slow.
  461. The first method is the default, i.e. if nothing is done to the CFLAGS or in
  462. ckcdeb.h (but in some cases, e.g. VMS, it is).  To select the second method,
  463. include -DIFDEBUG in the compilation (and don't include -DNODEBUG).
  464. 7. DIALER SUPPORT
  465. -DNODIAL removes automatic modem dialing completely, including the entire
  466. ckudia.c module, plus all commands that refer to dialing in the various
  467. ckuus*.c modules.
  468. -DMINIDIAL leaves the DIAL and related commands (SET/SHOW MODEM, SET/SHOW
  469. DIAL) intact, but removes support for all types of modems except CCITT, Hayes,
  470. Unknown, User-defined, Generic-high-speed, and None (= Direct).  The MINIDIAL
  471. option cuts the size of the dial module approximately in half.  Use this
  472. option if you have only Hayes or CCITT modems and don't want to carry the
  473. baggage for the other types.
  474. A compromise between full dialer support and MINIDIAL is obtained by removing
  475. support for "old" modems -- all the strange non-Hayes compatible 1200 and 2400
  476. bps modems that C-Kermit has been carrying around code for since 1985 or so.
  477. To remove support for these modems, add -DNOOLDMODEMS to CFLAGS at compilation
  478. time.
  479. Finally, if you keep support for old modems, you will notice that their names
  480. appear on the "set modem ?" menu.  That's because their names are, by default,
  481. "visible".  But the list is confusing to the younger generation, who have only
  482. heard of modems from the V.32bis-and-later era.  If you want to be able to
  483. use old modems, but don't want their names cluttering up menus, add this to
  484. CFLAGS:
  485.   -DM_OLD=1
  486. 8. NETWORK SUPPORT
  487. C-Kermit supports not only RS-232 serial connections, direct and modem, but
  488. also TCP/IP and X.25 network connections.  The OS/2 version supports DECnet
  489. (LAT) connections.  If you define the following symbol:
  490.   NONET
  491. then all network support will be compiled away.
  492. 8.1. TCP/IP
  493. TCP/IP support requires the Berkeley sockets library, and is generally
  494. available on any UNIX system.  It is also available in OS/2, VMS, AOS/VS, VOS,
  495. etc.  The TCP/IP support includes built-in TELNET negotiation handling.  To
  496. select TCP/IP support, include -DTCPSOCKET in your makefile entry's CFLAGS, or
  497. the appropriate variant (e.g. -DWOLLONGONG, -DMULTINET, -DEXCELAN, -DWINTCP,
  498. etc).
  499. Reportedly, even some of these are not consistent within themselves.  For
  500. example, Wollongong reportedly puts header files in different directories for
  501. different UNIX versions:
  502.   in.h can be in either /usr/include/sys or /user/include/netinet.
  503.   telnet.h can be in either /usr/include/arpa or /user/include/netinet.
  504.   inet.h can be in either /usr/include/arpa or /user/include/sys.
  505. In cases like this, use the -I cc command-line option when possible; otherwise
  506. it's better to make links in the file system than it is to hack up the
  507. C-Kermit source code.  Suppose, for example, Kermit is looking for telnet.h in
  508. /usr/include/arpa, but on your system it is in /usr/include/netinet.  Do this
  509. (as root, or get the system manager to do it):
  510.   cd /usr/include/arpa
  511.   ln /usr/include/netinet/telnet.h telnet.h
  512. ("man ln" for details about links.)
  513. The network support for TCP/IP and X.25 is in the source files CKCNET.H and
  514. CKCNET.C, with miscellaneous SHOW commands, etc, in the various CKUUS*.C
  515. modules, plus code in the CK*CON.C (CONNECT command) and several other modules
  516. to detect TELNET negotiations, etc.
  517. Within the TCPSOCKET code, some socket-level controls are included if
  518. TCPSOCKET is defined in the C-Kermit CFLAGS and SOL_SOCKET is defined in
  519. in the system's TCP-related header files, such as <sys/socket.h>.  These are
  520.   SET TCP KEEPALIVE
  521.   SET TCP LINGER
  522.   SET TCP RECVBUF
  523.   SET TCP SENDBUF
  524. In addition, if TCP_NODELAY is defined, the following command is also
  525. enabled:
  526.   SET TCP NODELAY (Nagle algorithm)
  527. See the user documentation for descriptions of these commands.
  528. 8.1.1. Firewalls
  529. There exist various types of firewalls, set up allow separate users of an
  530. internal TCP/IP network from the great wide Internet.  Of course, this could
  531. be accomplished most easily and safely by simply not connecting the internal
  532. network to the Internet, but in many cases some restricted forms of access are
  533. needed.  Thus a "firewall" is set up to allow only authorized accesses.
  534. One firewall method is called SOCKS, in which a proxy server allows users
  535. inside a firewall to access the outside world, based on a permission list
  536. generally stored in a file.  SOCKS is enabled in one of two ways.  First, the
  537. standard sockets library is modified to handle the firewall, and then all the
  538. client applications are relinked (in systems where linking is not dynamic)
  539. with the modified sockets library.  The APIs are all the same, so the
  540. applications do not need to be recoded or recompiled.
  541. In the other method, the applications must be modified to call replacement
  542. routines, such as Raccept() instead of accept(), Rbind() instead of bind(),
  543. etc, and then linked with a separate SOCKS library.  This second method is
  544. accomplished in C-Kermit by including -DCK_SOCKS in your CFLAGS, and also
  545. adding:
  546.   -lsocks
  547. to LIBS, or replacing -lsockets with -lsocks (depending on whether the socks
  548. library also includes all the sockets entry points).
  549. For SOCKS5, use -DCK_SOCKS5.
  550. Explicit firewall support can, in general, not be a standard feature or a
  551. feature that is selected at runtime, because the SOCKS library tends to be
  552. different at each site -- local modifications abound.
  553. The ideal situation occurs when firewalls are supported by the first method,
  554. using dynamically linked sockets-replacement libraries; in this case, all your
  555. TCP/IP client applications will negotiate the firewall transparently.
  556. 8.1.2. Solving Compilation and Linking Problems
  557. The main() routine is in ckcmai.c.  If you get complaints about "main: return
  558. type is not blah", define MAINTYPE on the CC command line, e.g.
  559.   make xxx "KFLAGS=-DMAINTYPE=blah" (where "blah" is int, long, or whatever).
  560. If the complaint is "Attempt to return a value from a function of type void"
  561. then add -DMAINISVOID:
  562.   make xxx "KFLAGS=-DMAINISVOID"
  563. If you get a compilation error in CKCNET.C, with a complaint like
  564. "incompatible types in assignment", it probably has something to do with the
  565. data type your system uses for the inet_addr() function, which is declared
  566. (usually) in <arpa/inet.h>.  Kermit uses "unsigned long" unless the symbol
  567. INADDRX is defined, in which case "struct inaddr" is used instead.  Try adding
  568. -DINADDRX to CFLAGS in your make entry, and if that fixes the problem, please
  569. send a report to kermit@columbia.edu.
  570. Compilation errors might also have to do with the data type used for
  571. getsockopt() and setsockopt() option-length field.  This is normally an int,
  572. but sometimes it's a short, a long, or an unsigned any of those, or a size_t.
  573. To fix the compilation problem, add -DSOCKOPT_T=xxx to the CFLAGS in your
  574. makefile entry, where xxx is the appropriate type (use "man getsockopt" or
  575. grep through your system/network header files to find the needed type).
  576. 8.1.3. Enabling Host Address Lists
  577. When you give Kermit an IP host name, it calls the socket routine
  578. gethostbyname() to resolve it.  gethostbyname() returns a hostent struct,
  579. which might or might not not include a list of addresses; if it does, then
  580. if the first one fails, Kermit can try the second one, and so on.  However,
  581. this will only work if the symbol "h_addr" is a macro defined as
  582. "h_addr_list[0]", usually in netdb.h.  If it is, then you can activate this
  583. feature by defining the following symbol in CFLAGS:
  584.   HADDRLIST
  585. 8.1.4. Enabling Telnet NAWS
  586. TELNET Negotiation About Window Size (NAWS) support requires the ability to
  587. find out the terminal screen's dimensions.  E.g. in UNIX, we need something
  588. like ioctl(0, TIOCGWINSZ, ...).  If your version of Kermit was built with NAWS
  589. capability, SHOW VERSIONS will include CK_NAWS among the compiler options.  If
  590. it doesn't, you can add it by defining CK_NAWS at compile time.  Then, if the
  591. compiler or linker complain about undefined or missing symbols, or there is no
  592. complaint but SHOW TERMINAL fails to show reasonable "Rows =, Columns ="
  593. values, then take a look at (or write) the appropriate ttgwsiz() routine.  On
  594. the other hand, if CK_NAWS is defined by default for your system (in ckcnet.h),
  595. but causes trouble, you can override this definition by including the -DNONAWS
  596. switch on your CC command line, thus disabling the NAWS feature.
  597. This appears to be needed at least on the AT&T 3B2, where in ckutio.c,
  598. the routine ttgwsiz() finds that the TIOCGWINSZ symbol is defined but lacks
  599. definitions for the corresponding winsize struct and its members ws_col
  600. and ws_row.
  601. The UNIX version of C-Kermit also traps SIGWINCH, so it can send a NAWS any
  602. time the console terminal window size changes, e.g. when you stretch it with a
  603. mouse.  The SIGWINCH-trapping code is enabled if SIGWINCH is defined (i.e. in
  604. signal.h).  If this code should cause problems, you can disable it without
  605. disabling the NAWS feature altogether, by defining NOSIGWINCH at compile time.
  606. 8.1.5. Enabling Incoming TCP/IP Connections
  607. This feature lets you "set host * <port>" and wait for an incoming connection
  608. on the given port.  This feature is enabled automatically at compile if
  609. TCPSOCKET is defined and SELECT is also defined.  But watch out, simply
  610. defining SELECT on the cc command line does not guarantee successful
  611. compilation or linking (see section 11).
  612. If you want to disable incoming TCP/IP connections, then build C-Kermit
  613. with:
  614.   -DNOLISTEN
  615. 8.1.6. Disabling "SET TCP" Options.
  616. The main reason for this is because of header file / prototype conflicts at
  617. compile time regardting get/setsockopt().  If you can't fix them (without
  618. breaking other builds), just include the following in CFLAGS:
  619.   -DNOTCPOPTS
  620. 8.2. X.25
  621. X.25 support requires (a) a SUN, (b) the SunLink product (libraries and header
  622. files), and (c) an X.25 connection into your SUN, or else Stratus VOS and the
  623. appropriate X.25 development tools.  Support for IBM AIXlink X.25 was added
  624. in C-Kermit 6.1.
  625. In UNIX, special makefile entries sunos4x25 and sunos41x25 (for SUNOS 4.0 and
  626. 4.1, respectively), or aix41x25, are provided to build in this feature, but
  627. they only work if conditions (a)-(c) are met.  To request this feature,
  628. include -DSUNX25 (or -DIBMX25) in CFLAGS.
  629. SUNX25 (or -DIBMX25) and TCPSOCKET can be freely mixed and matched.
  630. 8.3. Other Networks
  631. Support for other networking methods -- NETBIOS, LAT, Named Pipes, etc --
  632. is included in CK*NET.H and CK*NET.C for implementations (such as OS/2) where
  633. these methods are supported.
  634. Provision is made in the organization of the modules, header files, commands,
  635. etc, for addition of new network types such as DECnet, X.25 for other systems
  636. (HP-UX, VMS, etc), and so on.  Send email to kermit@columbia.edu if you are
  637. interested in working on such a project.
  638. 9. EXCEPTION HANDLING
  639. The setjmp/longjmp mechanism is used for handling exceptions.  The jump
  640. buffer is of type jmp_buf, which almost everywhere is typedef'd as an array,
  641. in which case you should have no trouble compiling the exception-handling
  642. code.  However, if you are building C-Kermit in/for an environment where
  643. jmp_buf is something other than an array (e.g. a struct), then you'll have
  644. to define the following symbol:
  645.   JBNOTARRAY
  646. 10. SECURITY FEATURES
  647. Compiling with the NOPUSH symbol defined removes all the "shell escape"
  648. features from the program, including the PUSH, RUN, and SPAWN commands, the
  649. "!"  and "@" command prefixes, OPEN !READ, OPEN !WRITE, job control (including
  650. the SUSPEND command), the REDIRECT command, shell/DCL escape from CONNECT
  651. mode, as well as the server's execution of REMOTE HOST commands (and, of
  652. course, the ENABLE HOST command).  Add NODISPO to also prevent acceptance of
  653. incoming MAIL or REMOTE PRINT files.  For UNIX, also be sure to read
  654. CKUINS.TXT about set[ug]id installation.  Additional restrictions can be
  655. enforced when in server mode; read about the DISABLE command.
  656. Compiling with NOCCTRAP prevents the trapping of SIGINT by Kermit.  Thus
  657. if the user generates a SIGINT signal (e.g. by typing the system's interrupt
  658. character), Kermit will exit immediately, rather than returning to its
  659. prompt.
  660. NOPUSH and NOCCTRAP together allow Kermit to be run from restricted shells,
  661. preventing access to system functions.
  662. 11. ENABLING SELECT()
  663. Kermit works best if it can do nonblocking reads, nondestructive input buffer
  664. checking, and millisecond sleeps.  All of these functions can be accomplished
  665. by the select() function, which, unfortunately, is not universally available.
  666. Furthermore, select() is required if incoming TCP/IP connections are to be
  667. supported.
  668. select() was introduced with Berkeley UNIX, rejected by AT&T for System V,
  669. but is gradually creeping in to all UNIX versions (and other operating systems
  670. too) by virtue of its presence in the sockets library, which is needed for
  671. TCP/IP.  AT&T SVID for System V R4 includes select(), but that does not mean
  672. that all SVR4 implementations have it.
  673. Furthermore, even when select() is available, it might work only on socket
  674. file descriptors, but not on others like serial ports, pipes, etc.  For
  675. example, in AOS/VS and BeOS (DR8 and earlier), it works only with file
  676. descriptors that were created by socket() and opened by connect() or accept().
  677. Other alternatives include poll() and rdchk().  Only one of these three
  678. functions should be included.  The following symbols govern this:
  679.   SELECT  Use select() (BSD, or systems with sockets libraries)
  680.   CK_POLL Use poll()   (System V)
  681.   RDCHK   Use rdchk()  (SCO)
  682. If your system supports the select() function, but your version of C-Kermit
  683. does not, try adding:
  684.   -DSELECT
  685. to the CFLAGS, and removing -DRDCHK or -DCK_POLL if it is there.  If you get
  686. compilation errors, some adjustments to ck*tio.c and/or ck*net.c might be
  687. needed; search for SELECT (uppercase) in these files (note that there are
  688. several variations on the calling conventions for select()).
  689. Various macros and data types need to be defined in order to use select().
  690. Usually these are picked up from <types.h> or <sys/types.h>.  But on some
  691. systems, they are in <sys/select.h>.  In that case, add the following:
  692.   -DSELECT_H
  693. to the CFLAGS to tell C-Kermit to #include <sys/select.h>.  A good indication
  694. that you need to do this would be if you get compile-time complaints about
  695. "fd_set" or "FD_SET" not being declared or defined.
  696. In UNIX, the use of select() vs fork() in the CONNECT command is independent
  697. of the above considerations, and is governed by choosing a particular makefile
  698. target.
  699. As of C-Kermit 6.1, select() is also the preferred control mechanism for
  700. the CONNECT command.  Unfortunately, the structures used by the original
  701. UNIX CONNECT command, based on fork(), and those used by select(), are so
  702. different, it was not practical to implement them both in one module.  So the
  703. select()-based CONNECT command module for UNIX is ckucns.c, and the fork-based
  704. one remains ckucon.c.  To choose the fork-based one, which is more portable
  705. (but slower and more fragile), use "wermit" as the make target.  To choose the
  706. select-based one, use "xermit" (as is done, for example, in the SunOS 4.1
  707. make target).  Only do this if you can verify that the CONNECT command works
  708. on serial connections and PIPE connections as well as TCP connections.
  709.   The select() version of ckucon.c MUST be used if encryption is to be
  710.   done, since the fork() version loses its ability to share vital state
  711.   information between the two forks.  Also note that the select() version
  712.   is superior in many other ways too.  For example, it recovers better from
  713.   exterior killing, forced disconnections, etc.
  714. SHOW VERSIONS tells whether the CONNECT module uses fork() or select().
  715. 12. I/O REDIRECTION
  716. The REDIRECT command allows a local program to be run with its i/o redirected
  717. over the communications connection.  Your version of C-Kermit has a REDIRECT
  718. command if it was built with the following CFLAG:
  719.   -DCK_REDIR
  720. This, in turn, is possible only if the underlying API is there.  In the case
  721. of UNIX this is just the wait() system call, so all UNIX versions get this
  722. feature as of 6.0.192 (earlier versions needed a <sys/wait.h> header file
  723. defining the symbols WIFEXITED and WEXITSTATUS).
  724. As of version 6.1, file transfer can be done using pipes and filters.  To
  725. enable this feature, #define PIPESEND (and fill in the code).  To disable on
  726. systems where it is normally enabled, define NOPIPESEND.  This feature is, of
  727. course, also disabled by building with NOPUSH (or giving the "nopush" command
  728. at runtime).
  729. Version 6.1 also adds the PIPE and SET HOST /COMMAND commands, which provide
  730. another form of redirection.  This feature is selected with -DNETCMD.  CK_RDIR
  731. must also be defined, since the same mechanisms are used internally.
  732. 13. FLOATING-POINT TIMERS
  733. C-Kermit 6.1 can be configured to use high-precision file-transfer timers
  734. for more accurate statistics.  This feature is enabled with:
  735.   -DGFTIMER
  736. and disabled with:
  737.   -DNOGFTIMER
  738. If you try to build with -DGFTIMER but you get compilation errors, either
  739. fix them (and send email to kermit@columbia.edu telling what you did), or
  740. else give up and use -DNOGFTIMER instead.  Hint: depending on your machine
  741. architecture, you might have better luck using double than float as the data
  742. type for floating-point numbers, or vice versa.  Look in ckcdeb.h for the
  743. section that handles this (search for "float").
  744. If it builds successfully, test the result carefully -- watch the time-related
  745. fields in the fullscreen file-transfer display and the numbers reported by the
  746. STATISTICS command.  If the results are nonsense, then try switching from
  747. float to double or vice versa as noted in the previous paragraph.  If that
  748. doesn't help, use -DNOFGTIMER.
  749. 14. SPECIAL CONFIGURATIONS
  750. As of C-Kermit 7.0, if you build C-Kermit normally, but with -DNOICP (No
  751. Interactive Command Parser), you get a program capable of making serial
  752. connections (but not dialing) and network connections (if TCPSOCKET or
  753. other network option included), and can also transfer files using Kermit
  754. protocol, but only via autodownload/upload.  Furthermore, if you call
  755. the executable "telnet", it will act like Telnet -- using the command-line
  756. options.  However, in this case there is nothing to escape back to, so if
  757. you type Ctrl-c, it just prints a message to this effect.
  758. You can also build C-Kermit with -DNOXFER, meaning omit all the file-transfer
  759. features.  This leaves you with a scriptable communications program that is
  760. considerably smaller than the full C-Kermit.
  761. ----------------------------------------------------------------------
  762. APPENDIX I: SUMMARY OF COMPILE-TIME OPTIONS
  763. These are the symbols that can be specified on the cc command line, listed
  764. alphabetically.  Others are used internally, including those taken from header
  765. files, those defined by the compiler itself, and those inferred from the ones
  766. given below.  Kermit's SHOW VERSIONS command attempts to display most of
  767. these.  See ckcdeb.h and ckcnet.h for inference rules.  For example SVR3
  768. implies ATTSV, MULTINET implies TCPSOCKET, and so on.
  769. The following options are not included in all makefile entries, but they are
  770. beneficial if they work.  It is recommended that you add them to your makefile
  771. entry if they are lacking and test the result.  If it's OK, let me know and
  772. I'll add them to the official makefile:
  773. DYNAMIC        Dynamic packet buffer allocation, bigger packets allowed, etc.
  774. NOSETBUF       Don't do unbuffered single-character writes to the console.
  775.                This tends to speed up CONNECT mode.
  776. Here is the complete list of the Kermit-specific compile-time switches:
  777. ACUCNTRL       Select BSD 4.3-style acucntrl() bidirectional tty control.
  778. aegis          Build for Apollo Aegis (predefined on Apollo systems).
  779. AIX370         Build for IBM AIX/370 for IBM mainframes.
  780. AIXESA         Build for IBM AIX/ESA for IBM mainframes.
  781. AIXPS2         Build for IBM AIX 3.0 for PS/2 series (never formally released).
  782. AIXRS          Build for IBM AIX 3.x on RS/6000.
  783. AIX41          Build for IBM AIX 4.x on RS/6000.
  784. AMIGA          Build for Commodore Amiga with Intuition OS.
  785. ATT6300        Build for AT&T 6300 PLUS.
  786. ATT7300        Build for AT&T 7300 UNIX PC (3B1).
  787. ATTSV          Build for AT&T System III or V UNIX.
  788. AUX            Build for Apple A/UX for the Macintosh.
  789. BIGBUFOK       OK to use big buffers - "memory is not a problem"
  790. BPS_xxxx       Enable SET SPEED xxxx
  791. BSD29          Build for BSD 2.9 or 2.10.
  792. BSD4           Build for BSD 4.2.
  793. BSD41          Build for BSD 4.1.
  794. BSD43          Build for BSD 4.3.
  795. BSD44          Build for BSD 4.4.
  796. C70            Build for BBN C/70.
  797. CIE            Build for CIE Systems 680/20.
  798. CKCONINTB4CB   Work around prompt-disappears after escape back from CONNECT.
  799. CKLOGDIAL      Enable connection log.
  800. CKMAXPATH      Maximum length for a fully qualified filename.
  801. CKREGEX        Include [...] or {xxx,xxx,xxx} matching in ckmatch().
  802. CKSYSLOG       Enable syslogging.
  803. CK_ANSIC       Enable ANSI C constructs - prototypes, etc.
  804. CK_ANSILIBS    Use header files for ANSI C libraries.
  805. CK_APC         Enable APC execution by CONNECT module.
  806. CK_CURSES      Enable fullscreen file transfer display.
  807. CK_DSYSINI     Use system-wide init file, with name supplied by Kermit.
  808. CK_DTRCD       DTR/CD flow control is available.
  809. CK_FAST        Build with fast Kermit protocol defaults.
  810. CK_FORK_SIG    UNIX only: signal() number for CONNECT module forks.
  811. CK_IFRO        IF REMOTE command is available (and can run in remote mode).
  812. CK_INI_A       System-wide init file takes precedence over user's.
  813. CK_INI_B       User's init file takes precedence over the system-wide one.
  814. CK_LABELED     Include support for SET FILE TYPE LABELED.
  815. CK_LBRK        This version can send Long BREAK.
  816. CK_LINGER      Add code to turn of TCP socket "linger" parameter.
  817. CK_MKDIR       This version has a zmkdir() command to create directories.
  818. CK_NAWS        Include TELNET Negotiate About Window Size support.
  819. CK_NEWTERM     Use newterm() rather than initscr() to initialize curses.
  820. CK_PCT_BAR     Fullscreen file transfer display should include "thermometer".
  821. CK_POLL        System-V or POSIX based UNIX has poll() function.
  822. CK_POSIX_SIG   Use POSIX signal handing: sigjmp_buf, sigsetjmp, siglongjmp.
  823. CK_READ0       read(fd,&x,0) can be used to test TCP/IP connections.
  824. CK_REDIR       Enable the REDIRECT command.
  825. CK_RESEND      Include the RESEND command (needs zfseek() + append).
  826. CK_RTSCTS      RTS/CTS flow control is available.
  827. CK_SOCKBUF     Enable TCP socket-buffer-size-increasing code.
  828. CK_SOCKS       UNIX only: Build with socks library rather than regular sockets
  829. CK_SOCKS5      UNIX only: Build with socks 5 lib rather than regular sockets
  830. CK_SPEED       Enable control-character unprefixing.
  831. CK_SYSINI="xxxxx"  Quoted string to be used as system-wide init file name.
  832. CK_TIMERS      Build with support for dynamically calculated packet timeouts.
  833. CK_TMPDIR      This version of Kermit has an isdir() function.
  834. CK_TTYFD       Defined on systems where the communications connection file
  835.                descriptor (ttyfd) can be passed to other processes as a
  836.                command-line argument via v(ttyfd).
  837. CK_URL         Parse URLs as well as hostnames, etc.
  838. CK_XONXOFF     Xon/Xoff flow control available.
  839. CK_XYZ         Include support for XYZMODEM protocols.
  840. CK_WREFRESH    Curses package includes wrefresh(),clearok() for screen refresh.
  841. CKTYP_H=xxx    Force include of xxx as <types.h> file.
  842. CLSOPN         When hanging up a tty device, also close and reopen it.
  843. CMDDEP         Maximum recursion depth for self-referential user-defined fn's.
  844. COHERENT       Build for Mark Williams Coherent UNIX
  845. CONGSPD        Define if this version has congspd() routine in ck?tio.c
  846. datageneral    Build for Data General AOS/VS or AOS/VS II
  847. DCLPOPEN       popen() is available but needs to be declared
  848. DEC_TCPIP      Build with support for DEC TCP/IP (UCX) for (Open)VMS
  849. DGUX430        Build for DG/UX 4.30
  850. DGUX540        Build for DG/UX 5.40
  851. DEFPAR=x       Default parity, 0, 'e', 'o', 'm', or 's'.
  852. DFTTY=xxx      Default communications device name.
  853. DIRENT         UNIX directory structure to be taken from <dirent.h>
  854. DIRPWDRP       Prompt for password in REMOTE CWD command.
  855. DTILDE         Include UNIX ~ notation for username/home-directory
  856. DYNAMIC        Allocate file transfer packet buffers dynamically with malloc.
  857. ENCORE         Build for Encore Multimax computers.
  858. EXCELAN        Build with excelan TCP/IP.
  859. FT18           Build for Fortune For:Pro 1.8.
  860. FT21           Build for Fortune For:Pro 2.1.
  861. GEMDOS         Build for Atari ST GEMDOS.
  862. GFTIMER        Use high-precision floating-point file-transfer timers.
  863. GID_T=xxx      Group IDs are of type xxx (usually int, short, or gid_t).
  864. HADDRLIST      If gethostbyname() hostent struct contains a list of addresses.
  865. HDBUUCP        Build with support for Honey DanBer UUCP.
  866. HPUX           Build for Hewlett Packard HP-UX.
  867. HPUX9          Build for Hewlett Packard HP-UX 9.x.
  868. HPUX10         Build for Hewlett Packard HP-UX 10.x.
  869. HWPARITY       Define if this version can SET PARITY HARDWARE { EVEN, ODD...}
  870. I386IX         Build for Interactive System V R3.
  871. IFDEBUG        Add IF stmts "if (deblog)" before "debug()" calls.
  872. INADDRX        TCP/IP inet_addr() type is struct inaddr, not unsigned long.
  873. INTERLAN       Build with support for Racal/Interlan TCP/IP.
  874. ISDIRBUG       System defs of S_ISDIR and S_ISREG have bug, define ourselves.
  875. ISIII          Build for Interactive System III.
  876. IX370          Build for IBM IX/370.
  877. KANJI          Build with Kanji character-set translation support.
  878. LCKDIR         UUCP lock directory is /usr/spool/uucp/LCK/.
  879. LFDEVNO        UUCP lockfile name uses device numbers, as in SVR4.
  880. LINUXFSSTND    For Linux, use FSSTND UUCP lockfile conventions (default).
  881. LOCK_DIR=xxx   UUCP lock directory is xxx.
  882. LOCKF          Use lockf() (in addition to lockfiles) on serial lines
  883. LONGFN         BSD long filenames supported using <dir.h> and opendir().
  884. LYNXOS         Build for Lynx OS 2.2 or later (POSIX-based).
  885. MAC            Build for Apple Macintosh with Mac OS.
  886. MATCHDOT       Make wildcards match filenames that start with period (.)
  887. MAXRP=xxx      Maximum receive-packet length.
  888. MAXSP=xxx      Maximum send-packet length.
  889. MDEBUG         Malloc-debugging requested.
  890. MINIDIAL       Minimum modem dialer support: CCITT, Hayes, Unkown, and None.
  891. MINIX          Build for MINIX.
  892. MIPS           Build for MIPS workstation.
  893. MULTINET       Build with support for TGV MultiNet TCP/IP (VAX/VMS).
  894. M_UNIX         Defined by SCO.
  895. NAP            The nap() is available (conflicts with SELECT and USLEEP)
  896. NAPHACK        The nap() call is available but only as syscall(3112,...)
  897. NDIR           BSD long filenames supported using <ndir.h> and opendir().
  898. NDGPWNAM       Don't declare getpwnam().
  899. NDSYSERRLIST   Don't declare sys_errlist[].
  900. NEEDSELECTDEFS select() is avaible but we need to define FD_blah ourselves.
  901. NETCMD         Build with support for SET HOST /COMMAND and PIPE commands.
  902. NEXT           Build for NeXT Mach 1.x or 2.x or 3.0, 3.1, or 3.2.
  903. NEXT33         Build for NeXT Mach 3.3.
  904. NOANSI         Disable ANSI C function prototyping.
  905. NOAPC          Do not include CK_APC code.
  906. NOB_xxxx       Disable SET SPEED xxxx
  907. NOBIGBUF       Override BIGBUFOK when it is the default
  908. NOBRKC         Don't try to refer to t_brkc or t_eof tchars structure members.
  909. NOCCTRAP       Disable Control-C (SIGINT) trapping.
  910. NOCKSPEED      Disable control-prefix removal feature (SET CONTROL).
  911. NOCKTIMERS     Build without support for dynamic timers.
  912. NOCKXYZ        Overrides CK_XYZ.
  913. NOCKREGEX      Do not include [...] or {xxx,xxx,xxx} matching in ckmatch().
  914. NOCMDL         Build with no command-line option processing.
  915. NOCOTFMC       No Close(Open()) To Force Mode Change (UNIX version).
  916. NOCSETS        Build with no support for character set translation.
  917. NOCYRIL        Build with no support for Cyrillic character set translation.
  918. NOCYRILLIC     Ditto.
  919. NODEBUG        Build with no debug logging capability.
  920. NODIAL         Build with no DIAL or SET DIAL commands.
  921. NODISPO        Build to always refuse incoming MAIL or REMOTE PRINT files.
  922. DNODISPLAY     Build with no file-transfer display.
  923. NOESCSEQ       Build with no support for ANSI escape sequence recognition.
  924. NOFAST         Do not make FAST Kermit protocol settings the default.
  925. NOFDZERO       Do not use file descriptor 0 for remote-mode file transfer.
  926. NOFILEH        Do not #include <sys/file.h>.
  927. NOFRILLS       Build with "no frills" (this should be phased out...)
  928. NOFTRUNCATE    Include this on UNIXes that don't have ftruncate().
  929. NOGETUSERSHELL Include this on UNIXes that don't have getusershell().
  930. NOGFTIMER      Don't use high-precision floating-point file-transfer timers.
  931. NOHEBREW       Build with no support for Hebrew character sets.
  932. NOHELP         Build with no built-in help.
  933. NOIKSD         Build with IKSD support excluded.
  934. NOINITGROUPS   Include this on UNIXes that don't have initgroups().
  935. NOICP          Build with no interactive command parser.
  936. NOJC           Build with no support for job control (suspend).
  937. NOKANJI        Build with no support for Japanese Kanji character sets.
  938. NOKVERBS       Build with no support for keyboard verbs (Kverbs).
  939. NOLATIN2       Build with no ISO Latin-2 character-set translation support.
  940. NOLINKBITS     Use of S_ISLNK and _IFLNK untrustworthy; use readlink() instead.
  941. NOLOCAL        Build without any local-mode features: No Making Connections.
  942. NOLOGDIAL      Disable connection log.
  943. NOLOGIN        Build without IKSD (network login) support.
  944. NOLSTAT        Not OK to use lstat().
  945. NOMDMHUP       Build without "modem-specific hangup" (e.g. ATH0) feature.
  946. NOMHHOST       Exclude the multihomed-host TCP/IP code (if compilcation errors)
  947. NOMINPUT       Build without MINPUT command.
  948. NOMSEND        Build with no MSEND command.
  949. NONAWS         Do not include TELNET Negotiate About Window Size support.
  950. NONET          Do not include any network support.
  951. NOPARSEN       Build without automatic parity detection.
  952. NOPIPESEND     Disable file transfer using pipes and filters.
  953. NOPOLL         Override CK_POLL definition.
  954. NOPOPEN        The popen() library call is not available.
  955. NOPURGE        Build with no PURGE command.
  956. NOPUSH         Build with no escapes to operating system.
  957. NOREALPATH     In UNIX, realpath() function is not available.
  958. NORECALL       Disable the command-recall feature.
  959. NOREDIRECT     Disable REDIRECT command.
  960. NORENAME       Don't use rename() system call, use link()/unlink() (UNIX).
  961. NORESEND       Build with no RESEND command.
  962. NORETRY        Build with no command-retry feature.
  963. NOSCRIPT       Build with no SCRIPT command.
  964. NOSELECT       Don't try to use select().
  965. NOSERVER       Build with no SERVER mode and no server-related commands.
  966. NOSETBUF       Don't make console writes unbuffered.
  967. NOSETREU       setreuid() and/or setregid() not available.
  968. NOSHOW         Build with no SHOW command (not recommended!).
  969. NOSIGWINCH     Disable SIGWINCH signal trapping.
  970. NOSPL          Build with no script programming language.
  971. NOSYMLINK      Include this for UNIXes that don't have readlink().
  972. NOSYSIOCTLH    Do not #include <sys/ioctl.h>.
  973. NOSYSTIMEH     Co not include <sys/time.h>.
  974. NOSYSLOG       Disable syslogging code.
  975. NOTCPOPTS      Build with no SET TCP options or underlying support.
  976. NOTLOG         Build with no support for transaction logging.
  977. NOUNICODE      Build with no support for Unicode character-set translation.
  978. NOURL          Don't parse URLs
  979. NOUUCP         Build with no UUCP lockfile support (dangerous!).
  980. NOWARN         Make EXIT WARNING be OFF by default (otherwise it's ON).
  981. NOWREFRESH     Override built-in definition of CK_WREFRESH (q.v.).
  982. NOXFER         Build with no Kermit or other file-transfer protocols.
  983. NOXMIT         Build with no TRANSMIT command.
  984. NOXPRINT       Disables transparent print code.
  985. OLDMSG         Use old "entering server mode" message (see ckcmai.c).
  986. OLINUXHISPEED  Build in old Linux hi-serial-speed code (for Linux <= 1.0).
  987. OPENBSD        Build for OpenBSD.
  988. OS2            Build for OS/2.
  989. OSF            Build for OSF/1.
  990. OSFPC          Build for OSF/1 on a PC.
  991. OSF32          Digital UNIX 3.2 or later.
  992. OSF40          Build for Digital UNIX 4.0.
  993. OSF50          Build for Digital UNIX 5.0.
  994. OSK            Build for OS-9.
  995. OXOS           Build for Olivetti X/OS 2.3.
  996. PCIX           Build for PC/IX
  997. PID_T=xxx      Type for pids is xxx (normally int or pid_t).
  998. POSIX          Build for POSIX: use POSIX header files, functions, etc.
  999. _POSIX_SOURCE  Disable non-POSIX features.
  1000. PROVX1         Build for Venix 1.0 on DEC Professional 3xx.
  1001. PTX            Build for Dynix/PTX
  1002. PWID_T=xxx     getpwid() type is xxx.
  1003. RBSIZ=xxx      Define overall size of receive-packet buffer (with DYNAMIC).
  1004. RDCHK          rdchk() system call is available.
  1005. RENAME         rename() system call is available (UNIX).
  1006. RTAIX          Build for AIX 2.2.1 on IBM RT PC.
  1007. RTU            Build for Masscomp / Concurrent RTU.
  1008. SAVEDUID       BSD or other non-AT&T UNIX has saved-setuid feature.
  1009. SBSIZ=xxx      Define overall size of send-packet buffer (use with DYNAMIC).
  1010. SDIRENT        Directory structure specified in <sys/dirent.h>.
  1011. SELECT         select() function available (conflicts with RDCHK and CK_POLL)
  1012. SELECT_H       Include <sys/select.h> for select()-releated definitions.
  1013. SETEUID        BSD 4.4-style seteXid() functions available.
  1014. SIG_V          Type for signal() is void.  Used to override normal assumption.
  1015. SIG_I          Type for signal() is int.  Used to override normal assumption.
  1016. SOCKOPT_T      Override default data type for get/setsockopt() option length.
  1017. SOLARIS        Build for Solaris.
  1018. SOLARIS25      Build for Solaris 2.5 or later.
  1019. SONYNEWS       Build for Sony NEWS-OS.
  1020. STERMIOX       <sys/termiox.h> is available.
  1021. STRATUS        Build for Stratus VOS.
  1022. STRATUSX25     Include Stratus VOS X.25 support.
  1023. SUN4S5         Build for SUNOS 4.x in the System V R3 environment.
  1024. SUNOS4         Build for SUNOS 4.0 in the BSD environment.
  1025. SUNOS41        Build for SUNOS 4.1 in the BSD environment.
  1026. SUNX25         Build with support for SunLink X.25.
  1027. SVR3           Build for AT&T System V Release 3.
  1028. SVR3JC         Allow job control support on System V Release 3 UNIX versions.
  1029. SVR4           Build for AT&T System V Release 4.
  1030. SW_ACC_ID      UNIX only -- swap real & effective ids around access() calls.
  1031. sxaE50         Build for PFU Compact A Series SX/A TISP.
  1032. SYSLOGLEVEL=n  Force syslogging at given level.
  1033. SYSTIMEH       Include <sys/time.h>.
  1034. SYSUTIMEH      Include <sys/utime.h> for setting file dates (88OPEN)
  1035. TCPSOCKET      Build with support for TCP/IP via Berkeley sockets library.
  1036. TERMIOX        <termiox.h> header file is available (mostly SVR4).
  1037. TNCODE         Include TELNET-specific code.
  1038. TOWER1         Build for NCR Tower 1632 with OS 1.02.
  1039. TRS16          Build for Tandy 16/6000.
  1040. UID_T=xxx      Type for uids is xxx (normally int or uid_t).
  1041. UNIX           Must be defined for all UNIX versions.
  1042. UNIX351M       AT&T UNIX 3.51m on the AT&T 7300 UNIX PC.
  1043. USE_LSTAT      OK to use lstat().
  1044. USE_MEMCPY     Define this if memcpy()/memset()/memmove() available.
  1045. USE_STRERROR   Define this if strerror() is available.
  1046. USLEEP         usleep() system call available (conflicts with NAP & SELECT).
  1047. UTEK           Build for Tektronix workstations with UTEK OS.
  1048. UTIMEH         Include <utime.h> for setting file dates (SVR4, POSIX)
  1049. UTS24          Build for Amdahl UTS 2.4.
  1050. V7             Build for Version 7 UNIX.
  1051. VMS            Build for VAX/VMS.
  1052. VOID=xxx       VOID type for functions (int or void).
  1053. VXVE           Build for CDC VX/VE 5.2.1.
  1054. WAIT_T=xxx     Type of argument passed to wait().
  1055. WINTCP         Build with Wollongong VAX/VMS TCP/IP (implies TCPSOCKET)
  1056. WOLLONGONG     Build with Wollongong UNIX TCP/IP (implies TCPSOCKET)
  1057. XENIX          Build for Xenix (SCO, Tandy, others).
  1058. XNDIR          Support for BSD long filenames via <sys/ndir.h>.
  1059. XYZ_INTERNAL   Support for XYZMODEM protocols is internal, not external.
  1060. ZFCDAT         Define this if zfcdat() function is available in Kermit.
  1061. ZILOG          Build for Zilog ZEUS.
  1062. ZJDATE         Has zjdate() function that converts date to Julian format.
  1063. XPRINT         Transparent print code included in CONNECT module.
  1064. (End of CKCCFG.TXT)