home *** CD-ROM | disk | FTP | other *** search
- /*******************************************************
- * HSCB - HALF-SESSION CONTROL BLOCK *
- *******************************************************/
- struct hscb {
- struct hscb *next; /* pointer to next hscb */
- struct nau *naup; /* pointer to nau */
- char hslunam[8]; /* lu name */
- char hsnodnam[8]; /* lu node name */
- unsigned long cor; /* session cor */
- unsigned char part_net_ad[6]; /* Novell partner's network address */
- unsigned char flag; /* active flag for Novell network */
- };
- #define ACTIVE 0x01
- #define NACTIVE 0
-
-
-