home *** CD-ROM | disk | FTP | other *** search
-
- #define IDENT_PORT 113 /* TCP port for ident service */
-
- /* ident protocol control block */
- struct ident
- {
- struct tcb *tcb; /* pointer to associated tcb */
- struct session *session; /* pointer to finger session */
- char *user; /* name of user to finger */
- int closing;
- };
- #define NULLID (struct ident *) 0
-
-
- /* In IDSERV */
- int ident1(int, char **);
- void ident_state(struct tcb *, char, char);
- int ident0(void);
- void rcv_ident(struct tcb *, int16);
-