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

通讯/手机编程

开发平台:

Windows_Unix

  1. /* ckcnet.h -- Symbol and macro definitions for C-Kermit network support */
  2. /*
  3.   Author: Frank da Cruz <fdc@columbia.edu>
  4.   Columbia University Academic Information Systems, New York City.
  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. */
  10. #ifndef CKCNET_H
  11. #define CKCNET_H
  12. /* Network types */
  13. #define NET_NONE 0 /* None */
  14. #define NET_TCPB 1 /* TCP/IP Berkeley (socket) */
  15. #define NET_TCPA 2 /* TCP/IP AT&T (streams) */
  16. #define NET_SX25 3 /* SUNOS SunLink X.25 */
  17. #define NET_DEC  4 /* DECnet */
  18. #define NET_VPSI 5 /* VAX PSI */
  19. #define NET_PIPE 6 /* LAN Manager Named Pipe */
  20. #define NET_VX25 7 /* Stratus VOS X.25 */
  21. #define NET_BIOS 8 /* IBM NetBios */
  22. #define NET_SLAT 9 /* Meridian Technologies' SuperLAT */
  23. #define NET_FILE 10 /* Read from a file */
  24. #define NET_CMD  11                     /* Read from a sub-process */
  25. #define NET_DLL  12                     /* Load a DLL for use as comm channel*/
  26. #define NET_SSH  13                     /* Use SSH */
  27. #define NET_IX25 14 /* IBM AIX 4.1 X.25 */
  28. #define NET_HX25 15 /* HP-UX 10 X.25 */
  29. #define NET_PTY  16 /* Pseudoterminal */
  30. #ifdef OS2 /* In OS/2, only the 32-bit */
  31. #ifndef __32BIT__ /* version gets NETBIOS */
  32. #ifdef CK_NETBIOS
  33. #undef CK_NETBIOS
  34. #endif /* CK_NETBIOS */
  35. #endif /* __32BIT__ */
  36. #endif /* OS2 */
  37. #ifdef _M_PPC
  38. #ifdef SUPERLAT
  39. #undef SUPERLAT
  40. #endif /* SUPERLAT */
  41. #endif /* _M_PPC */
  42. #ifdef NPIPE /* For items in common to */
  43. #define NPIPEORBIOS /* Named Pipes and NETBIOS */
  44. #endif /* NPIPE */
  45. #ifdef CK_NETBIOS
  46. #ifndef NPIPEORBIOS
  47. #define NPIPEORBIOS
  48. #endif /* NPIPEORBIOS */
  49. #endif /* CK_NETBIOS */
  50. /* Network virtual terminal protocols */
  51. #define NP_DEFAULT 255
  52. #define NP_NONE 0 /* None (async) */
  53. #define NP_TELNET 1 /* TCP/IP telnet */
  54. #define NP_VTP 2 /* ISO Virtual Terminal Protocol */
  55. #define NP_X3 3 /* CCITT X.3 */
  56. #define NP_X28 4 /* CCITT X.28 */
  57. #define NP_X29 5 /* CCITT X.29 */
  58. #define NP_RLOGIN 6 /* TCP/IP Remote login */
  59. #define NP_KERMIT 7 /* TCP/IP Kermit */
  60. #define NP_FTP    8 /* TCP/IP FTP */
  61. #define NP_TCPRAW 9 /* TCP/IP Raw socket */
  62. #define NP_TCPUNK 10                    /* TCP/IP Unknown */
  63. #define NP_SSL 11                       /* TCP/IP SSLv23 */
  64. #define NP_TLS 12                       /* TCP/IP TLSv1 */
  65. #define NP_SSL_TELNET 13                /* TCP/IP Telnet over SSLv23 */
  66. #define NP_TLS_TELNET 14                /* TCP/IP Telnet over TLSv1 */
  67. #define NP_K4LOGIN     15               /* TCP/IP Kerberized remote login */
  68. #define NP_EK4LOGIN    16               /* TCP/IP Encrypted Kerberized ... */
  69. #define NP_K5LOGIN     17               /* TCP/IP Kerberized remote login */
  70. #define NP_EK5LOGIN    18               /* TCP/IP Encrypted Kerberized ... */
  71. #define NP_CTERM 20 /* DEC CTERM */
  72. #define NP_LAT 21 /* DEC LAT */
  73. /* others here... */
  74. /* RLOGIN Modes */
  75. #define    RL_RAW     0 /*  Do Not Process XON/XOFF */
  76. #define    RL_COOKED  1 /*  Do Process XON/XOFF */
  77. /* Encryption types */
  78. #define CX_NONE    999
  79. #ifdef ENCTYPE_ANY
  80. #define CX_AUTO ENCTYPE_ANY
  81. #else
  82. #define CX_AUTO 0
  83. #endif /* ENCTYPE_ANY */
  84. #ifdef ENCTYPE_DES_CFB64
  85. #define CX_DESC64 ENCTYPE_DES_CFB64
  86. #else
  87. #define CX_DESC64 1
  88. #endif /* ENCTYPE_DES_CFB64 */
  89. #ifdef ENCTYPE_DES_OFB64
  90. #define CX_DESO64 ENCTYPE_DES_OFB64
  91. #else
  92. #define CX_DESO64 2
  93. #endif /* ENCTYPE_DES_OFB64 */
  94. #ifdef ENCTYPE_DES3_CFB64
  95. #define CX_DES3C64 ENCTYPE_DES3_CFB64
  96. #else
  97. #define CX_DES3C64 3
  98. #endif /* ENCTYPE_DES_CFB64 */
  99. #ifdef ENCTYPE_DES3_OFB64
  100. #define CX_DESO64 ENCTYPE_DES3_OFB64
  101. #else
  102. #define CX_DES3O64 4
  103. #endif /* ENCTYPE_DES_OFB64 */
  104. #ifdef ENCTYPE_CAST5_40_CFB64
  105. #define CX_C540C64 ENCTYPE_CAST5_40_CFB64
  106. #else
  107. #define CX_C540C64 8
  108. #endif /* ENCTYPE_CAST5_40_CFB64 */
  109. #ifdef ENCTYPE_CAST5_40_OFB64
  110. #define CX_C540O64 ENCTYPE_CAST5_40_OFB64
  111. #else
  112. #define CX_C540O64 9
  113. #endif /* ENCTYPE_CAST5_40_OFB64 */
  114. #ifdef ENCTYPE_CAST128_CFB64
  115. #define CX_C128C64 ENCTYPE_CAST128_CFB64
  116. #else
  117. #define CX_C128C64 10
  118. #endif /* ENCTYPE_CAST128_CFB64 */
  119. #ifdef ENCTYPE_CAST128_OFB64
  120. #define CX_C128O64 ENCTYPE_CAST128_OFB64
  121. #else
  122. #define CX_C128O64 11
  123. #endif /* ENCTYPE_CAST128_OFB64 */
  124. /* Basic network function prototypes, common to all. */
  125. _PROTOTYP( int netopen, (char *, int *, int) );
  126. _PROTOTYP( int netclos, (void) );
  127. _PROTOTYP( int netflui, (void) );
  128. _PROTOTYP( int nettchk, (void) );
  129. _PROTOTYP( int netbreak, (void) );
  130. _PROTOTYP( int netinc, (int) );
  131. _PROTOTYP( int netxin, (int, CHAR *) );
  132. _PROTOTYP( int nettol, (CHAR *, int) );
  133. _PROTOTYP( int nettoc, (CHAR) );
  134. /*
  135.   SunLink X.25 support by Marcello Frutig, Catholic University,
  136.   Rio de Janeiro, Brazil, 1990.
  137.   Maybe this can be adapted to VAX PSI and other X.25 products too.
  138. */
  139. #ifndef SUNOS4 /* Only valid for SUNOS4 */
  140. #ifndef SOLARIS
  141. #ifdef SUNX25
  142. #undef SUNX25
  143. #endif /* SUNX25 */
  144. #endif /* SOLARIS */
  145. #endif /* SUNOS4 */
  146. #ifdef STRATUSX25
  147. #define ANYX25
  148. #define MAX_USER_DATA 128 /* SUN defines this in a header file, I believe. */
  149. #endif /* STRATUSX25 */
  150. #ifdef SUNX25
  151. #define ANYX25
  152. #endif /* SUNX25 */
  153. #ifdef IBMX25 /* AIX 4.1 X.25 */
  154. #ifndef AIX41
  155. #undef IBMX25
  156. #else /* AIX41 */
  157. #define ANYX25
  158. #define MAX_USER_DATA NPI_MAX_DATA /* used for buffer sizes */
  159. #endif /* AIX41 */
  160. #endif /* IBMX25 */
  161. #ifdef HPX25 /* HP-UX 10.* X.25 */
  162. #ifndef HPUX10
  163. #undef HPX25
  164. #else /* HPUX10 */
  165. #define ANYX25
  166. #endif /* HPUX10 */
  167. #endif /* HPX25 */
  168. #ifdef ANYX25
  169. #ifndef NETCONN /* ANYX25 implies NETCONN */
  170. #define NETCONN
  171. #endif /* NETCONN */
  172. #define MAXPADPARMS                22 /* Number of PAD parameters */
  173. #define MAXCUDATA    12 /* Max length of X.25 call user data */
  174. #define X29PID     1   /* X.29 protocol ID */
  175. #define X29PIDLEN     4   /* X.29 protocol ID length */
  176. #define X29_SET_PARMS               2
  177. #define X29_READ_PARMS              4
  178. #define X29_SET_AND_READ_PARMS      6
  179. #define X29_INVITATION_TO_CLEAR     1
  180. #define X29_PARAMETER_INDICATION    0
  181. #define X29_INDICATION_OF_BREAK     3
  182. #define X29_ERROR                   5
  183. #define INVALID_PAD_PARM            1
  184. #define PAD_BREAK_CHARACTER         0
  185. #define PAD_ESCAPE                  1
  186. #define PAD_ECHO                    2
  187. #define PAD_DATA_FORWARD_CHAR       3
  188. #define PAD_DATA_FORWARD_TIMEOUT    4
  189. #define PAD_FLOW_CONTROL_BY_PAD     5
  190. #define PAD_SUPPRESSION_OF_SIGNALS  6
  191. #define PAD_BREAK_ACTION            7
  192. #define PAD_SUPPRESSION_OF_DATA     8
  193. #define PAD_PADDING_AFTER_CR        9
  194. #define PAD_LINE_FOLDING           10
  195. #define PAD_LINE_SPEED             11
  196. #define PAD_FLOW_CONTROL_BY_USER   12
  197. #define PAD_LF_AFTER_CR            13
  198. #define PAD_PADDING_AFTER_LF       14
  199. #define PAD_EDITING                15
  200. #define PAD_CHAR_DELETE_CHAR       16
  201. #define PAD_BUFFER_DELETE_CHAR     17
  202. #define PAD_BUFFER_DISPLAY_CHAR    18
  203. #define MAXIX25 MAX_USER_DATA*7
  204. #define MAXOX25 MAX_USER_DATA
  205. #endif /* ANYX25 */
  206. #ifdef SUNX25
  207. #ifdef SOLARIS25 /* and presumably SunLink 9.xx */
  208. #include <fcntl.h>
  209. #include <errno.h>
  210. #include <sys/ioccom.h>
  211. #include <sys/types.h>
  212. #include <sys/socket.h>
  213. #include <sys/sockio.h>
  214. #include <sundev/syncstat.h>
  215. #include <netx25/x25_pk.h>
  216. #include <netx25/x25_ctl.h>
  217. #include <netx25/x25_ioctl.h>
  218. #else
  219. #include <sys/ioctl.h> /* X.25 includes, Sun only */
  220. #include <sys/param.h>
  221. #include <sys/systm.h>
  222. #ifndef SOLARIS
  223. #include <sys/mbuf.h>
  224. #endif /* SOLARIS */
  225. #include <sys/socket.h>
  226. #include <sys/protosw.h>
  227. #ifdef SOLARIS
  228. #include <sys/sockio.h>
  229. #else
  230. #include <sys/domain.h>
  231. #endif /* SOLARIS */
  232. #include <sys/socketvar.h>
  233. #include <net/if.h>
  234. #include <sundev/syncstat.h>
  235. #include <netx25/x25_pk.h>
  236. #include <netx25/x25_ctl.h>
  237. #include <netx25/x25_ioctl.h>
  238. #endif /* SOLARIS25 */
  239. #endif /* SUNX25 */
  240. #ifdef ANYX25
  241. #ifdef IBMX25 /* X.25 includes, AIX only */
  242. #include <fcntl.h>
  243. #include <sys/twtypes.h>
  244. #include <sys/twlib.h>
  245. #include <sys/stream.h>
  246. #include <stropts.h>
  247. #define NPI_20 /* required to include the whole NPI */
  248. #include <sys/npi_20.h>
  249. #include <sys/npiapi.h>
  250. #include <sys/pktintf.h>
  251. #include <odmi.h> /* required for access to the ODM   */
  252. #include <sys/cfgodm.h> /* database, needed to find out the */
  253. /* local NUA. see x25local_nua()    */
  254. /* IBM X25 NPI generic primitive type */
  255. typedef union N_npi_ctl_t {
  256.     ulong PRIM_type; /* generic primitive type */
  257.     char buffer[NPI_MAX_CTL]; /* maximum primitive size */
  258.     N_bind_ack_t        bind_ack;
  259.     N_bind_req_t        bind_req;
  260.     N_conn_con_t        conn_con;
  261.     N_conn_ind_t        conn_ind;
  262.     N_conn_req_t        conn_req;
  263.     N_conn_res_t        conn_res;
  264.     N_data_req_t        data_req;
  265.     N_data_ind_t        data_ind;
  266.     N_discon_ind_t      discon_ind;
  267.     N_discon_req_t      discon_req;
  268.     N_error_ack_t       error_ack;
  269.     N_exdata_ind_t      exdata_ind;
  270.     N_info_ack_t        info_ack;
  271.     N_ok_ack_t          ok_ack;
  272.     N_reset_con_t       reset_con;
  273.     N_reset_req_t       reset_req;
  274.     N_reset_ind_t       reset_ind;
  275. } N_npi_ctl_t;
  276. /* some extra definitions to help out */
  277. typedef char x25addr_t[45]; /* max 40 defined by CCITT */
  278. typedef char N_npi_data_t[NPI_MAX_DATA];
  279. /* fd or server waiting for connections, used by netclos and netopen */
  280. extern int x25serverfd;
  281. #endif /* IBMX25 */
  282. #ifdef HPX25 /* X.25 includes, HP-UX only */
  283. #include <x25/ccittproto.h>
  284. #include <x25/x25.h>
  285. #include <x25/x25addrstr.h>
  286. #include <x25/x25codes.h>
  287. #include <x25/x25hd_ioctl.h>
  288. #include <x25/x25ioctls.h>
  289. #include <x25/x25str.h>
  290. #include <sys/ioctl.h>
  291. #endif /* HPX25 */
  292. /* C-Kermit X.3 / X.25 / X.29 / X.121 support functions */
  293. /* (riehm: this list of functions isn't quite right for AIX) */
  294. _PROTOTYP( int shopad, (int) );
  295. _PROTOTYP( int shox25, (int) );
  296. _PROTOTYP( VOID initpad, (void) );
  297. _PROTOTYP( VOID setpad, (CHAR *, int) );
  298. _PROTOTYP( VOID readpad, (CHAR *, int, CHAR *) );
  299. _PROTOTYP( int qbitpkt, (CHAR *, int) );
  300. _PROTOTYP( VOID setqbit, (void) );
  301. _PROTOTYP( VOID resetqbit, (void) );
  302. _PROTOTYP( VOID breakact, (void) );
  303. _PROTOTYP( int pkx121, (char *, CHAR *) );
  304. _PROTOTYP( SIGTYP x25oobh, (int) );
  305. _PROTOTYP( int x25diag, (void) );
  306. _PROTOTYP( int x25intr, (char) );
  307. _PROTOTYP( int x25reset, (char, char) );
  308. _PROTOTYP( int x25clear, (void) );
  309. _PROTOTYP( int x25stat, (void) );
  310. _PROTOTYP( int x25in, (int, CHAR *) );
  311. _PROTOTYP( int setpadp, (void) );
  312. _PROTOTYP( int setx25, (void) );
  313. _PROTOTYP( int x25xin, (int, CHAR *) );
  314. _PROTOTYP( int x25inl, (CHAR *, int, int, CHAR) );
  315. #ifdef IBMX25
  316. /* setup x25 */
  317. _PROTOTYP( ulong x25bind, (int, char *, char *, int, int, int, ulong) );
  318. _PROTOTYP( int x25call, (int, char *, char *) ); /* connect to remote */
  319. _PROTOTYP( int x25unbind, (int) ); /* disconnect */
  320. _PROTOTYP( char *x25prim, (int) ); /* display primitives */
  321. _PROTOTYP( int x25local_nua, (char *) ); /* find local NUA */
  322. #endif /* IBMX25 */
  323. #endif /* ANYX25 */
  324. /* CMU-OpenVMS/IP */
  325. #ifdef CMU_TCPIP /* CMU_TCPIP implies TCPSOCKET */
  326. #ifndef TCPSOCKET
  327. #define TCPSOCKET
  328. #endif /* TCPSOCKET */
  329. #ifndef TCPIPLIB
  330. #define TCPIPLIB
  331. #endif /* TCPIPLIB */
  332. #endif /* CMU_TCPIP */
  333. /* DEC TCP/IP for (Open)VMS, previously known as UCX */
  334. #ifdef DEC_TCPIP /* DEC_TCPIP implies TCPSOCKET */
  335. #ifndef TCPSOCKET
  336. #define TCPSOCKET
  337. #endif /* TCPSOCKET */
  338. #ifndef TCPIPLIB
  339. #define TCPIPLIB
  340. #endif /* TCPIPLIB */
  341. #endif /* DEC_TCPIP */
  342. /* SRI/TGV/Cisco/Process MultiNet, TCP/IP for VAX/VMS */
  343. #ifdef MULTINET /* MULTINET implies TCPSOCKET */
  344. #ifndef TCPSOCKET
  345. #define TCPSOCKET
  346. #endif /* TCPSOCKET */
  347. #ifndef TCPIPLIB
  348. #define TCPIPLIB
  349. #endif /* TCPIPLIB */
  350. #ifndef TGVORWIN /* MULTINET and WINTCP */
  351. #define TGVORWIN /* share a lot of code... */
  352. #endif /* TGVORWIN */
  353. #endif /* MULTINET */
  354. /* Wollongong TCP/IP for VAX/VMS */
  355. #ifdef WINTCP /* WINTCP implies TCPSOCKET */
  356. #ifndef TCPSOCKET
  357. #define TCPSOCKET
  358. #endif /* TCPSOCKET */
  359. #ifndef TCPIPLIB
  360. #define TCPIPLIB
  361. #endif /* TCPIPLIB */
  362. #ifndef TGVORWIN /* WINTCP and MULTINET */
  363. #define TGVORWIN /* share a lot of code... */
  364. #endif /* TGVORWIN */
  365. #endif /* WINTCP */
  366. /* Wollongong TCP/IP for AT&T Sys V */
  367. #ifdef WOLLONGONG /* WOLLONGONG implies TCPSOCKET */
  368. #ifndef TCPSOCKET /* Don't confuse WOLLONGONG */
  369. #define TCPSOCKET /* (which is for UNIX) with */
  370. #endif /* TCPSOCKET */ /* WINTCP, which is for VMS! */
  371. #endif /* WOLLONGONG */
  372. #ifdef EXCELAN /* EXCELAN implies TCPSOCKET */
  373. #ifndef TCPSOCKET
  374. #define TCPSOCKET
  375. #endif /* TCPSOCKET */
  376. #endif /* EXCELAN */
  377. #ifdef INTERLAN /* INTERLAN implies TCPSOCKET */
  378. #ifndef TCPSOCKET
  379. #define TCPSOCKET
  380. #endif /* TCPSOCKET */
  381. #endif /* INTERLAN */
  382. #ifdef BEOSORBEBOX
  383. #ifndef TCPIPLIB
  384. #define TCPIPLIB
  385. #endif /* TCPIPLIB */
  386. #define socket_errno    h_errno
  387. #define socket_read(x,y,z)  recv(x,y,sizeof(char),z)
  388. #define socket_write(x,y,z)  send(x,y,sizeof(char),z)
  389. #define socket_ioctl ioctl
  390. #define socket_close(x)         closesocket(x)
  391. #ifndef FIONBIO
  392. #define FIONBIO 2
  393. #endif /* FIONBIO */
  394. #ifndef COHERENT /* eh? */
  395. #ifndef FIONREAD
  396. #define FIONREAD       1
  397. #endif /* FIONREAD */
  398. #endif /* COHERENT */
  399. #ifndef SIOCATMARK
  400. #define SIOCATMARK     3
  401. #endif /* SIOCATMARK */
  402. #endif /* BEOSORBEBOX */
  403. #ifdef COMMENT /* no longer used but might come in handy again later... */
  404. /*
  405.   CK_READ0 can (and should) be defined if and only if:
  406.   (a) read(fd,&x,0) can be used harmlessly on a TCP/IP socket connection.
  407.   (b) read(fd,&x,0) returns 0 if the connection is up, -1 if it is down.
  408. */
  409. #ifndef CK_READ0
  410. #ifdef TCPSOCKET
  411. #ifdef SUNOS41 /* It works in SunOS 4.1 */
  412. #define CK_READ0
  413. #else
  414. #ifdef NEXT /* and NeXTSTEP */
  415. #define CK_READ0
  416. #endif /* NEXT */
  417. #endif /* SUNOS41 */
  418. #endif /* TCPSOCKET */
  419. #endif /* CK_READ0 */
  420. #endif /* COMMENT */
  421. #ifdef TCPSOCKET
  422. #ifndef NOHADDRLIST
  423. #ifndef HADDRLIST
  424. #ifdef SUNOS41
  425. #define HADDRLIST
  426. #endif /* SUNOS41 */
  427. #ifdef SOLARIS
  428. #define HADDRLIST
  429. #endif /* SOLARIS */
  430. #ifdef LINUX
  431. #define HADDRLIST
  432. #endif /* LINUX */
  433. #ifdef AIXRX
  434. #define HADDRLIST
  435. #endif /* AIXRS */
  436. #ifdef HPUX
  437. #define HADDRLIST
  438. #endif /* HPUX */
  439. #ifdef IRIX
  440. #define HADDRLIST
  441. #endif /* IRIX */
  442. #ifdef I386IX
  443. #define HADDRLIST
  444. #endif /* I386IX */
  445. #endif /* HADDRLIST */
  446. #endif /* NOHADDRLIST */
  447. #endif /* TCPSOCKET */
  448. /* Telnet protocol */
  449. #ifdef TCPSOCKET /* TCPSOCKET implies TNCODE */
  450. #ifndef TNCODE /* Which means... */
  451. #define TNCODE /* Compile in telnet code */
  452. #endif /* TNCODE */
  453. /*
  454.    Platforms where we must call gethostname(buf,len) and then
  455.    gethostbyname(buf) to get local IP address, rather than calling
  456.    gethostbyname("").
  457. */
  458. #ifndef CKGHNLHOST
  459. #ifdef datageneral
  460. #define CKGHNLHOST
  461. #else
  462. #ifdef SOLARIS
  463. #define CKGHNLHOST
  464. #else
  465. #ifdef SUNOS4
  466. #define CKGHNLHOST
  467. #else
  468. #ifdef UNIXWARE
  469. #define CKGHNLHOST
  470. #else
  471. #ifdef SINIX
  472. #define CKGHNLHOST
  473. #endif /* SINIX */
  474. #endif /* UNIXWARE */
  475. #endif /* SUNOS4 */
  476. #endif /* SOLARIS */
  477. #endif /* datageneral */
  478. #endif /* CKGHNLHOST */
  479. /*
  480.   Telnet local-echo buffer, used for saving up user data that can't be
  481.   properly displayed and/or evaluated until pending Telnet negotiations are
  482.   complete.  TTLEBUF is defined for platforms (like UNIX) where net i/o is
  483.   done by the same routines that do serial i/o (in which case the relevant
  484.   code goes into the ck?tio.c module, in the ttinc(), ttchk(), etc, routines);
  485.   NETLETBUF is defined for platforms (like VMS) that use different APIs for
  486.   network and serial i/o, and enables the copies of the same routines that
  487.   are in ckcnet.c.
  488. */
  489. #ifndef TTLEBUF
  490. #ifdef UNIX
  491. #define TTLEBUF
  492. #else
  493. #ifdef datageneral
  494. #define TTLEBUF
  495. #endif /* datageneral */
  496. #endif /* UNIX */
  497. #endif /* TTLEBUF */
  498. #ifndef NETLEBUF
  499. #ifdef VMS
  500. #define NETLEBUF
  501. #endif /* VMS */
  502. #endif /* NETLEBUF */
  503. #ifndef RLOGCODE /* What about Rlogin? */
  504. #ifndef NORLOGIN
  505. /*
  506.   Rlogin can be enabled only for UNIX versions that have both SIGURG
  507.   (SCO doesn't) and CK_TTGWSIZ (OSF/1 doesn't), so we don't assume that
  508.   any others have these without verifying first.  Not that it really makes
  509.   little difference since you can only use Rlogin if you are root...
  510. */
  511. #ifdef SUNOS41
  512. #define RLOGCODE
  513. #else
  514. #ifdef SOLARIS
  515. #define RLOGCODE
  516. #else
  517. #ifdef HPUX9
  518. #define RLOGCODE
  519. #else
  520. #ifdef HPUX10
  521. #define RLOGCODE
  522. #else
  523. #ifdef OSF40
  524. #define RLOGCODE
  525. #else
  526. #ifdef NEXT
  527. #define RLOGCODE
  528. #else
  529. #ifdef AIX41
  530. #define RLOGCODE
  531. #else
  532. #ifdef UNIXWARE
  533. #define RLOGCODE
  534. #else
  535. #ifdef IRIX51
  536. #define RLOGCODE
  537. #else
  538. #ifdef IRIX60
  539. #define RLOGCODE
  540. #else
  541. #ifdef QNX
  542. #define RLOGCODE
  543. #else
  544. #ifdef __linux__
  545. #define RLOGCODE
  546. #endif /* __linux__ */
  547. #endif /* QNX */
  548. #endif /* IRIX60 */
  549. #endif /* IRIX51 */
  550. #endif /* UNIXWARE */
  551. #endif /* AIX41 */
  552. #endif /* NEXT */
  553. #endif /* OSF40 */
  554. #endif /* HPUX10 */
  555. #endif /* HPUX9 */
  556. #endif /* SOLARIS */
  557. #endif /* SUNOS41 */
  558. #endif /* NORLOGIN */
  559. #ifdef VMS /* VMS */
  560. #define RLOGCODE
  561. #endif /* VMS */
  562. #endif /* RLOGCODE */
  563. #endif /* TCPSOCKET */
  564. #ifdef SUNX25 /* SUNX25 implies TCPSOCKET */
  565. #ifndef TCPSOCKET /* But doesn't imply TNCODE */
  566. #define TCPSOCKET
  567. #endif /* TCPSOCKET */
  568. #endif /* SUNX25 */
  569. #ifndef TCPSOCKET
  570. #ifndef NO_DNS_SRV
  571. #define NO_DNS_SRV
  572. #endif /* NO_DNS_SRV */
  573. #endif /* TCPSOCKET */
  574. /* This is the TCPSOCKET section... */
  575. #ifdef TCPSOCKET
  576. #ifndef NETCONN /* TCPSOCKET implies NETCONN */
  577. #define NETCONN
  578. #endif /* NETCONN */
  579. #ifndef NO_DNS_SRV
  580. #ifdef OS2ONLY
  581. #define NO_DNS_SRV
  582. #endif /* OS2ONLY */
  583. #ifdef VMS
  584. #define NO_DNS_SRV
  585. #endif /* VMS */
  586. #ifdef STRATUS
  587. #define NO_DNS_SRV
  588. #endif /* STRATUS */
  589. #ifdef datageneral
  590. #define NO_DNS_SRV
  591. #endif /* datageneral */
  592. #ifdef ultrix
  593. #define NO_DNS_SRV
  594. #endif /* ultrix */
  595. #ifdef NEXT
  596. #define NO_DNS_SRV
  597. #endif /* NEXT */
  598. #endif /* NO_DNS_SRV */
  599. #ifndef CK_DNS_SRV                      /* Use DNS SRV records to determine */
  600. #ifndef NO_DNS_SRV                      /* host and ports */
  601. #define CK_DNS_SRV
  602. #endif /* NO_DNS_SRV */
  603. #endif /* CK_DNS_SRV */
  604. #ifndef NOLISTEN /* select() is required to support */
  605. #ifndef SELECT /* incoming connections. */
  606. #ifndef VMS
  607. #ifndef OS2
  608. #define NOLISTEN
  609. #endif /* OS2 */
  610. #endif /* VMS */
  611. #endif /* SELECT */
  612. #endif /* NOLISTEN */
  613. /* BSD sockets library header files */
  614. #ifdef VMS
  615. /*
  616.   Because bzero() and bcopy() are not portable among VMS versions,
  617.   or compilers, or TCP/IP products, etc.
  618. */
  619. #ifndef bzero
  620. #define bzero(s,n) memset(s,0,n)
  621. #endif /* bzero */
  622. #ifndef bcopy
  623. #define bcopy(h,a,l) memcpy(a,h,l)
  624. #endif /* bcopy */
  625. #endif /* VMS */
  626. #ifdef UNIX /* UNIX section */
  627. #ifdef SVR4
  628. /*
  629.   These suggested by Rob Healey, rhealey@kas.helios.mn.org, to avoid
  630.   bugs in Berkeley compatibility library on Sys V R4 systems, but untested
  631.   by me (fdc).  Remove this bit if it gives you trouble.
  632.   (Later corrected by Marc Boucher <mboucher@iro.umontreal.ca> because
  633.   bzero/bcopy are not argument-compatible with memset/memcpy|memmove.)
  634. */
  635. #define bzero(s,n) memset(s,0,n)
  636. #ifdef SOLARIS
  637. #ifdef SUNX25
  638. #undef bzero
  639. /*
  640.   WOULD YOU BELIEVE... That the Solaris X.25 /opt/SUNWcomm/lib/libsockx25
  641.   library references bzero, even though the use of bzero is forbidden in
  642.   Solaris?  Look for the function definition in ckcnet.c.
  643. */
  644. _PROTOTYP( void bzero, (char *, int) );
  645. #endif /* SUNX25 */
  646. #define bcopy(h,a,l) memcpy(a,h,l)
  647. #else
  648. #define bcopy(h,a,l) memmove(a,h,l)
  649. #endif /* SOLARIS */
  650. #else /* !SVR4 */
  651. #ifdef PTX /* Sequent DYNIX PTX 1.3 */
  652. #define bzero(s,n) memset(s,0,n)
  653. #define bcopy(h,a,l) memcpy(a,h,l)
  654. #endif /* PTX */
  655. #endif /* SVR4 */
  656. #ifdef INTERLAN /* Racal-Interlan TCP/IP */
  657. #include <interlan/socket.h>
  658. #include <interlan/il_types.h>
  659. #include <interlan/telnet.h>
  660. #include <interlan/il_errno.h>
  661. #include <interlan/in.h>
  662. #include <interlan/telnet.h> /* Why twice ? ? ? */
  663. #else /* Not Interlan */
  664. #ifdef BEOSORBEBOX
  665. #include <socket.h>
  666. #else /* Not BEBOX */ /* Normal BSD TCP/IP library */
  667. #ifdef COMMENT
  668. #ifndef HPUX
  669. #include <arpa/telnet.h>
  670. #endif /* HPUX */
  671. #endif /* COMMENT */
  672. #ifdef SCO234
  673. #include <sys/errno.tcp.h>
  674. #include <sys/types.tcp.h>
  675. #endif /* SCO234 */
  676. #include <sys/socket.h>
  677. #ifdef WOLLONGONG
  678. #include <sys/in.h>
  679. #else
  680. #include <netinet/in.h>
  681. #endif /* WOLLONGONG */
  682. #endif /* BEOSORBEBOX */
  683. #endif /* INTERLAN */
  684. #ifndef EXCELAN
  685. #include <netdb.h>
  686. #ifndef INTERLAN
  687. #ifdef WOLLONGONG
  688. #define minor /* Do not include <sys/macros.h> */
  689. #include <sys/inet.h>
  690. #else
  691. #ifndef OXOS
  692. #ifndef HPUX
  693. #ifndef BEOSORBEBOX
  694. #include <arpa/inet.h>
  695. #endif /* BEOSORBEBOX */
  696. #endif /* HPUX */
  697. #else /* OXOS */
  698. /* In too many releases of X/OS, <arpa/inet.h> declares inet_addr() as
  699.  * ``struct in_addr''.  This is definitively wrong, and could cause
  700.  * core dumps.  Instead of including that bad file, inet_addr() is
  701.  * correctly declared here.  Of course, all the declarations done there
  702.  * has been copied here.
  703.  */
  704. unsigned long inet_addr();
  705. char *inet_ntoa();
  706. struct in_addr inet_makeaddr();
  707. unsigned long inet_network();
  708. #endif /* OXOS */
  709. #endif /* WOLLONGONG */
  710. #endif /* INTERLAN */
  711. #endif /* EXCELAN */
  712. #ifdef EXCELAN /* Excelan TCP/IP */
  713. #ifndef bzero
  714. #define bzero(s,n) memset(s,0,n)
  715. #endif /* bzero */
  716. #ifndef bcopy
  717. #define bcopy(h,a,l) memcpy(a,h,l)
  718. #endif /* bcopy */
  719. #include <ex_errno.h>
  720. #endif /* EXCELAN */
  721. #ifdef I386IX /* Interactive Sys V R3 network. */
  722. /* #define TELOPTS */ /* This might need defining. */
  723. #define ORG_NLONG ENAMETOOLONG /* Resolve conflicting symbols */
  724. #undef ENAMETOOLONG /* in <errno.h> and <net/errno.h> */
  725. #define ORG_NEMPTY ENOTEMPTY
  726. #undef ENOTEMPTY
  727. #include <net/errno.h>
  728. #undef ENAMETOOLONG
  729. #define ENAMETOOLONG ORG_NLONG
  730. #undef ENOTEMPTY
  731. #define ENOTEMPTY ORG_NEMPTY
  732. #include <netinet/tcp.h> /* for inet_addr() */
  733. #endif /* I386IX */
  734. /*
  735.   Data type of the inet_addr() function...
  736.   We define INADDRX if it is of type struct inaddr.
  737.   If it is undefined, unsigned long is assumed.
  738.   Look at <arpa/inet.h> to find out.  The following known cases are
  739.   handled here.  Other systems that need it can be added here, or else
  740.   -DINADDRX can be included in the CFLAGS on the cc command line.
  741. */
  742. #ifndef NOINADDRX
  743. #ifdef DU2 /* DEC Ultrix 2.0 */
  744. #define INADDRX
  745. #endif /* DU2 */
  746. #endif /* NOINADDRX */
  747. #else /* Not UNIX */
  748. #ifdef VMS /* (Open)VMS section */
  749. #ifdef MULTINET /* TGV MultiNet */
  750. /*
  751.   In C-Kermit 7.0 Beta.08 we started getting scads of compile time warnings
  752.   in Multinet builds: "blah" is implicitly declared as a function, where blah
  753.   is socket_read/write/close, ntohs, htons, getpeername, accept, select, etc.
  754.   I have no idea why -- these routines are declared in the header files below,
  755.   and the includes haven't changed.  The executable still seems to work OK.
  756.   Messing with the order of the following includes is disastrous.
  757. */
  758. #ifdef MULTINET_NO_PROTOTYPES
  759. #undef MULTINET_NO_PROTOTYPES
  760. #endif /* MULTINET_NO_PROTOTYPES */
  761. #ifdef  __cplusplus
  762. #undef  __cplusplus
  763. #endif /*  __cplusplus */
  764. #include "multinet_root:[multinet.include]errno.h"
  765. #include "multinet_root:[multinet.include.sys]types.h"
  766. #include "multinet_root:[multinet.include.sys]socket.h"
  767. #include "multinet_root:[multinet.include]netdb.h"
  768. #include "multinet_root:[multinet.include.netinet]in.h"
  769. #include "multinet_root:[multinet.include.arpa]inet.h"
  770. #include "multinet_root:[multinet.include.sys]ioctl.h"
  771. #ifdef COMMENT
  772. /*
  773.   No longer needed because now bzero/bcopy are macros defined as
  774.   memset/memmove in all VMS builds.
  775. */
  776. /*
  777.   We should be able to pick these up from <strings.h> but it's
  778.   not portable between VAXC and DECC.  And even with DECC 5.x we have a
  779.   difference between VAX and Alpha.  We get warnings here on the VAX
  780.   with DECC 5.6-003 but they are not fatal.
  781. */
  782. #ifndef __DECC_VER
  783. #ifndef bzero
  784. _PROTOTYP( void bzero, (char *, int) );
  785. #endif /* bzero */
  786. #ifndef bcopy
  787. _PROTOTYP( void bcopy, (char *, char *, int) );
  788. #endif /* bcopy */
  789. #endif /* __DECC_VER */
  790. #endif /* COMMENT */
  791. #ifdef __DECC
  792. /*
  793.    If compiling under DEC C the socket calls must not be prefixed with
  794.    DECC$.  This is done by using the compiler switch /Prefix=Ansi_C89.
  795.    However, this causes some calls that should be prefixed to not be
  796.    (which I think is a bug in the compiler - I've been told these calls
  797.    are present in ANSI compilers).  At any rate, such calls are fixed
  798.    here by explicitly prefixing them.
  799. */
  800. #ifdef COMMENT
  801. /*
  802.    But this causes errors with VMS 6.2 / DEC C 5.3-006 / MultiNet 4.0A on
  803.    a VAX (but not on an Alpha).  So now what happens if we skip doing this?
  804. */
  805. #define close decc$close
  806. #define alarm decc$alarm
  807. #endif /* COMMENT */
  808. #endif /* __DECC */
  809. #else /* Not MULTINET */
  810. #ifdef WINTCP /* WIN/TCP = PathWay for VMS */
  811. #ifdef OLD_TWG
  812. #include "twg$tcp:[netdist.include.sys]errno.h"
  813. #include "twg$tcp:[netdist.include.sys]types2.h" /* avoid some duplicates */
  814. #else
  815. #include "twg$tcp:[netdist.include]socket_aliases.h"
  816. #include <errno.h>
  817. #include "twg$tcp:[netdist.include.sys]types.h"
  818. #endif /* OLD_TWG */
  819. #include "twg$tcp:[netdist.include.sys]socket.h"
  820. #include "twg$tcp:[netdist.include]netdb.h"
  821. #include "twg$tcp:[netdist.include.sys]domain.h"
  822. #include "twg$tcp:[netdist.include.sys]protosw.h"
  823. #include "twg$tcp:[netdist.include.netinet]in.h"
  824. #include "twg$tcp:[netdist.include.arpa]inet.h"
  825. #include "twg$tcp:[netdist.include.sys]ioctl.h"
  826. #else /* Not WINTCP */
  827. #ifdef DEC_TCPIP
  828. #ifdef UCX50
  829. #ifndef IF_DOT_H
  830. #define IF_DOT_H
  831. #endif /*  IF_DOT_H */
  832. #endif /* UCX50 */
  833. #ifdef IF_DOT_H
  834. #include <if.h> /* Needed to put up u_int typedef */
  835. #else
  836. #ifdef NEEDUINT
  837. typedef unsigned int u_int;
  838. #endif /* NEEDUINT */
  839. #endif /* IF_DOT_H */
  840. #include <in.h>
  841. #include <netdb.h>
  842. #include <socket.h>
  843. #include "ckvioc.h"
  844. #define socket_errno errno
  845. #ifdef COMMENT
  846. /*
  847.   No longer needed because now bzero/bcopy are macros defined as
  848.   memset/memmove in all VMS builds.
  849. */
  850. /*
  851.   Translation: In <strings.h>, which exists only for DECC >= 5.2, bzero()
  852.   and bcopy() are declared only for OpenVMS >= 7.0.  This still might need
  853.   adjustment for DECC 5.0 and higher.
  854. */
  855. #ifdef __DECC_VER
  856. #ifdef VMSV70
  857. /*
  858.   Note: you can't use "#if (__VMS_VER>=70000000)" because that is not
  859.   portable and kills non-VMS builds.
  860. */
  861. #include <strings.h>
  862. #else
  863. #define bzero(s,n) memset(s,0,n)
  864. #define bcopy(h,a,l) memmove(a,h,l)
  865. #endif /* VMSV70 */
  866. #else
  867. #define bzero(s,n) memset(s,0,n)
  868. #define bcopy(h,a,l) memmove(a,h,l)
  869. #endif /* __DECC_VER */
  870. #endif /* COMMENT */
  871. #define socket_read  read
  872. #define socket_write  write
  873. #define socket_ioctl ioctl
  874. #define socket_close    close
  875. #ifdef __DECC
  876. int ioctl (int d, int request, void *argp);
  877. #else
  878. int ioctl (int d, int request, char *argp);
  879. #endif /* DECC */
  880. /*
  881.   UCX supports select(), but does not provide the needed symbol and
  882.   structure definitions in any header file, so ...
  883. */
  884. #include <types.h>
  885. #ifndef NBBY
  886. /*-
  887.  * Copyright (c) 1982, 1986, 1991, 1993
  888.  * The Regents of the University of California.  All rights reserved.
  889.  *
  890.  * Redistribution and use in source and binary forms, with or without
  891.  * modification, are permitted provided that the following conditions
  892.  * are met:
  893.  * 1. Redistributions of source code must retain the above copyright
  894.  *    notice, this list of conditions and the following disclaimer.
  895.  * 2. Redistributions in binary form must reproduce the above copyright
  896.  *    notice, this list of conditions and the following disclaimer in the
  897.  *    documentation and/or other materials provided with the distribution.
  898.  * 3. All advertising materials mentioning features or use of this software
  899.  *    must display the following acknowledgement:
  900.  * This product includes software developed by the University of
  901.  * California, Berkeley and its contributors.
  902.  * 4. Neither the name of the University nor the names of its contributors
  903.  *    may be used to endorse or promote products derived from this software
  904.  *    without specific prior written permission.
  905.  *
  906.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  907.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  908.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  909.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  910.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  911.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  912.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  913.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  914.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  915.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  916.  * SUCH DAMAGE.
  917.  *
  918.  * @(#)types.h 8.1 (Berkeley) 6/2/93
  919.  */
  920. #define NBBY 8 /* number of bits in a byte */
  921. /*
  922.  * Select uses bit masks of file descriptors in longs.  These macros
  923.  * manipulate such bit fields (the filesystem macros use chars).
  924.  * FD_SETSIZE may be defined by the user, but the default here should
  925.  * be enough for most uses.
  926.  */
  927. #ifndef FD_SETSIZE
  928. #define FD_SETSIZE 256
  929. #endif
  930. typedef long fd_mask;
  931. #define NFDBITS (sizeof(fd_mask) * NBBY) /* bits per mask */
  932. #ifndef howmany
  933. #define howmany(x, y) (((x)+((y)-1))/(y))
  934. #endif
  935. typedef struct fd_set {
  936. fd_mask fds_bits[howmany(FD_SETSIZE, NFDBITS)];
  937. } fd_set;
  938. #define FD_SET(n, p) ((p)->fds_bits[(n)/NFDBITS] |= (1 << ((n) % NFDBITS)))
  939. #define FD_CLR(n, p) ((p)->fds_bits[(n)/NFDBITS] &= ~(1 << ((n) % NFDBITS)))
  940. #define FD_ISSET(n, p) ((p)->fds_bits[(n)/NFDBITS] & (1 << ((n) % NFDBITS)))
  941. #define FD_COPY(f, t) bcopy(f, t, sizeof(*(f)))
  942. #define FD_ZERO(p) bzero(p, sizeof(*(p)))
  943. #endif /* !NBBY */
  944. #else  /* Not DEC_TCPIP */
  945. #ifdef CMU_TCPIP
  946. #include <types.h>
  947. #include <in.h>
  948. #include <netdb.h>
  949. #include <socket.h>
  950. #include <ioctl.h>
  951. #include "ckvioc.h"
  952. #define socket_errno errno
  953. #ifdef COMMENT
  954. /* This is now done above for all VMS builds */
  955. #define bzero(s,n) memset(s,0,n)
  956. #define bcopy(h,a,l) memmove(a,h,l)
  957. #endif /* COMMENT */
  958. /*
  959.  * Routines supplied in LIBCMU.OLB
  960.  */
  961. #define socket_ioctl ioctl
  962. #define socket_read  cmu_read
  963. #define socket_write  cmu_write
  964. #define socket_close    cmu_close
  965. #endif /* CMU_TCPIP */
  966. #endif /* DEC_TCPIP */
  967. #endif /* WINTCP */
  968. #endif /* MULTINET */
  969. #else /* Not VMS */
  970. #ifdef OS2
  971. #include "ckonet.h"
  972. #ifndef NT
  973. #include <nerrno.h>
  974. #endif
  975. #endif /* OS2 */
  976. #ifdef STRATUS  /* Stratus VOS using OS TCP/IP products S235, S236, S237 */
  977. #include <tcp_socket.h>
  978. /* This gets used some places when TCPSOCKET is defined. */
  979. /* OS TCP provides bzero(), but not bcopy()... go figure. */
  980. #define bcopy(s,d,z) memcpy(d,s,z)
  981. #endif /* STRATUS */
  982. #ifdef OSK
  983. #ifndef OSKXXC
  984. #include <inet/in.h>
  985. #include <inet/netdb.h>
  986. #include <inet/socket.h>
  987. #else
  988. #include <INET/in.h>
  989. #include <INET/netdb.h>
  990. #include <INET/socket.h>
  991. #endif /* OSKXXC */
  992. #define bzero(s,n) memset(s,0,n)
  993. #define bcopy(h,a,l) memcpy(a,h,l)
  994. typedef char * caddr_t; /* core address type */
  995. #endif /* OSK */
  996. #endif /* VMS */
  997. #endif /* UNIX */
  998. #endif /* TCPSOCKET */
  999. #ifdef TNCODE /* If we're compiling telnet code... */
  1000. #ifndef IKS_OPTION
  1001. #ifndef STRATUS
  1002. #define IKS_OPTION
  1003. #endif /* STRATUS */
  1004. #endif /* IKS_OPTION */
  1005. #include "ckctel.h"
  1006. #else
  1007. extern int sstelnet;
  1008. #ifdef IKSD
  1009. #undef IKSD
  1010. #endif /* IKSD */
  1011. #ifndef NOIKSD
  1012. #define NOIKSD
  1013. #endif /* NOIKSD */
  1014. #ifdef IKS_OPTION
  1015. #undef IKS_OPTION
  1016. #endif /* IKS_OPTION */
  1017. #endif /* TNCODE */
  1018. #ifndef NOTCPOPTS
  1019. /*
  1020.   Automatically define NOTCPOPTS for configurations where they can't be
  1021.   used at runtime or cause too much trouble at compile time.
  1022. */
  1023. #ifdef CMU_TCPIP /* CMU/Tek */
  1024. #define NOTCPOPTS
  1025. #endif /* CMU_TCPIP */
  1026. #ifdef MULTINET /* Multinet on Alpha */
  1027. #ifdef __alpha
  1028. #define NOTCPOPTS
  1029. #endif /* __alpha */
  1030. #endif /* MULTINET */
  1031. #endif /* NOTCPOPTS */
  1032. #ifdef NOTCPOPTS
  1033. #ifdef TCP_NODELAY
  1034. #undef TCP_NODELAY
  1035. #endif /* TCP_NODELAY */
  1036. #ifdef SO_LINGER
  1037. #undef SO_LINGER
  1038. #endif /* SO_LINGER */
  1039. #ifdef SO_KEEPALIVE
  1040. #undef SO_KEEPALIVE
  1041. #endif /* SO_KEEPALIVE */
  1042. #ifdef SO_SNDBUF
  1043. #undef SO_SNDBUF
  1044. #endif /* SO_SNDBUF */
  1045. #ifdef SO_RCVBUF
  1046. #undef SO_RCVBUF
  1047. #endif /* SO_RCVBUF */
  1048. #endif /* NOTCPOPTS */
  1049. #ifdef TCPSOCKET
  1050. #ifdef SOL_SOCKET
  1051. #ifdef TCP_NODELAY
  1052. _PROTOTYP( int no_delay, (int) );
  1053. #endif /* TCP_NODELAY */
  1054. #ifdef SO_KEEPALIVE
  1055. _PROTOTYP( int keepalive, (int) ) ;
  1056. #endif /* SO_KEEPALIVE */
  1057. #ifdef SO_LINGER
  1058. _PROTOTYP( int ck_linger, (int, int) ) ;
  1059. #endif /* SO_LINGER */
  1060. #ifdef SO_SNDBUF
  1061. _PROTOTYP( int sendbuf,(int) ) ;
  1062. #endif /* SO_SNDBUF */
  1063. #ifdef SO_RCVBUF
  1064. _PROTOTYP( int recvbuf, (int) ) ;
  1065. #endif /* SO_RCVBUF */
  1066. #ifdef SO_DONTROUTE
  1067. _PROTOTYP(int dontroute, (int));
  1068. #endif /* SO_DONTROUTE */
  1069. #endif /* SOL_SOCKET */
  1070. _PROTOTYP( int getlocalipaddr, (VOID));
  1071. _PROTOTYP( int getlocalipaddrs, (char *,int,int));
  1072. _PROTOTYP( char * ckgetpeer, (VOID));
  1073. _PROTOTYP( char * ckgetfqhostname,(char *));
  1074. /* AIX */
  1075. #ifdef AIXRS
  1076. #ifndef TCP_NODELAY
  1077. #define TCP_NODELAY 0x1
  1078. #endif /* TCP_NODELAY */
  1079. #ifndef TCP_MAXSEG
  1080. #define TCP_MAXSEG 0x2
  1081. #endif /* TCP_MAXSEG */
  1082. #ifndef TCP_KEEPALIVE
  1083. #define TCP_KEEPALIVE 0x8
  1084. #endif /* TCP_KEEPALIVE */
  1085. #endif /* AIXRS */
  1086. #endif /* TCPSOCKET */
  1087. #ifdef RLOGCODE
  1088. #ifndef CK_TTGWSIZ
  1089. SORRY_RLOGIN_REQUIRES_TTGWSIZ_see_ckcplm.doc
  1090. #endif /* CK_TTGWSIZ */
  1091. #endif /* RLOGCODE */
  1092. #ifdef CK_NAWS
  1093. #ifndef CK_TTGWSIZ
  1094. SORRY_CK_NAWS_REQUIRES_TTGWSIZ_see_ckcplm.doc
  1095. #endif /* CK_TTGWSIZ */
  1096. #endif /* CK_NAWS */
  1097. #ifndef PF_INET
  1098. #ifdef  AF_INET
  1099. #define PF_INET AF_INET
  1100. #endif /* AF_INET */
  1101. #endif /* PF_INET */
  1102. #ifndef IPPORT_ECHO
  1103. #define IPPORT_ECHO 7
  1104. #endif /* IPPORT_ECHO */
  1105. #ifdef CK_KERBEROS
  1106. #ifdef RLOGCODE
  1107. _PROTOTYP(int ck_krb_rlogin,(CHAR *, int, CHAR *, CHAR *, CHAR *,
  1108.                               struct sockaddr_in *,
  1109.                               struct sockaddr_in *, int, int));
  1110. #endif /* RLOGCODE */
  1111. #endif /* CK_KERBEROS */
  1112. _PROTOTYP( VOID ini_kerb, ( void ) );   /* Kerberos initialization routine */
  1113. _PROTOTYP( int doauth, (int) );         /* AUTHENTICATE action routine */
  1114. #ifdef CK_DNS_SRV
  1115. _PROTOTYP(int locate_srv_dns,(const char *host, const char *service,
  1116.       const char *protocol, struct sockaddr **addr_pp,
  1117.       int *naddrs));
  1118. #endif /* CK_DNS_SRV */
  1119. #ifndef NOHTTP
  1120. _PROTOTYP(int http_get, (char *,char **,char *,char *,char,char *,char *));
  1121. _PROTOTYP(int http_head, (char *,char **,char *,char *,char,char *,char *));
  1122. _PROTOTYP(int http_put, (char *,char **,char *,char *,char *,char,char *,
  1123.  char *));
  1124. _PROTOTYP(int http_delete, (char *,char **,char *,char *,char,char *));
  1125. _PROTOTYP(int http_post, (char *,char **,char *,char *,char *,char,char *,
  1126.   char *));
  1127. _PROTOTYP(int http_index, (char *,char **,char *,char *,char,char *,char *));
  1128. #endif /* NOHTTP */
  1129. #endif /* CKCNET_H */