home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / internet / tcpip / src205 / TCPIP_Src / h / ident < prev    next >
Encoding:
Text File  |  1995-01-10  |  557 b   |  20 lines

  1.  
  2. #define IDENT_PORT      113             /* TCP port for ident service */
  3.  
  4. /* ident protocol control block */
  5. struct ident
  6. {
  7.         struct tcb      *tcb;           /* pointer to associated tcb */
  8.         struct session  *session;       /* pointer to finger session */
  9.         char            *user;          /* name of user to finger */
  10.         int             closing;
  11. };
  12. #define NULLID       (struct ident *) 0
  13.  
  14.  
  15. /* In IDSERV */
  16. int ident1(int, char **);
  17. void ident_state(struct tcb *, char, char);
  18. int ident0(void);
  19. void rcv_ident(struct tcb *, int16);
  20.