home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / NCSATELN / TEL23SRC.ZIP / INCLUDE / KIP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-10-08  |  1.4 KB  |  49 lines

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