home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Commun⁄Network / Telnet 2.5.src.ThinkC / source / NCSA Driver / kip.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-13  |  1.3 KB  |  40 lines  |  [TEXT/MPS ]

  1. /*
  2. *    kip.h
  3. *     by Gaige B. Paulsen
  4. ****************************************************************************
  5. *                                                                          *
  6. *      Uses    :                                                               *
  7. *      TCP/IP kernel for NCSA Telnet                                       *
  8. *      by Tim Krauskopf                                                    *
  9. *       with Macintosh code by Gaige B. Paulsen                                 *
  10. *                                                                          *
  11. *      National Center for Supercomputing Applications                     *
  12. *      152 Computing Applications Building                                 *
  13. *      605 E. Springfield Ave.                                             *
  14. *      Champaign, IL  61820                                                *
  15. *                                                                          *
  16. *                                                                          *
  17. ****************************************************************************
  18. *
  19. *    KIP/Croft gateway structures.    
  20. *
  21. */
  22. struct IPGP {
  23.     long
  24.         opcode,
  25.         ipaddress,
  26.         ipname,
  27.         ipbroad,
  28.         ipfile,
  29.         ipother[4];
  30.     char
  31.         string[128];
  32.     };
  33.  
  34. typedef struct IPGP IPGP;
  35.  
  36. #define ipgpAssign    1
  37. #define ipgpName    2
  38. #define ipgpServer    3
  39. #define ipgpError    -1
  40.