home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0010 - 0019 / ibm0010-0019 / ibm0010.tar / ibm0010 / UNIX3862.ZIP / U386-06.ZIP / U386-6.TD0 / usr / include / sys / adv.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-06-26  |  697 b   |  29 lines

  1. /*    Copyright (c) 1984, 1986, 1987, 1988 AT&T    */
  2. /*      All Rights Reserved      */
  3.  
  4. /*    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T    */
  5. /*    The copyright notice above does not evidence any       */
  6. /*    actual or intended publication of such source code.    */
  7.  
  8.  
  9. #ident    "@(#)head.sys:adv.h    1.3"
  10.  
  11. /*
  12.  *    advertise structure.
  13.  *    one entry per advertised object.
  14.  */
  15.  
  16. struct    advertise    {
  17.     int    a_flags;        /* defines are in sys/nserve.h    */
  18.     int    a_count;        /* number of active rmounts    */
  19.     char    a_name [NMSZ];        /* name sent to name server    */
  20.     struct    rcvd    *a_queue;    /* receive queue for this name    */
  21.     char    *a_clist;        /* ref to authorization list    */
  22. } ;
  23.  
  24. #ifdef INKERNEL
  25.  
  26. extern    struct    advertise    advertise[];
  27.  
  28. #endif
  29.