home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / utilities / utilss / sockets / include / sys / h / domain < prev    next >
Encoding:
Text File  |  1995-01-11  |  1.1 KB  |  42 lines

  1. /*
  2.  * $Header: /ax/networking:include/sys/domain.h:networking  1.1  $
  3.  * $Source: /ax/networking:include/sys/domain.h: $
  4.  *
  5.  * Copyright (c) 1988 Acorn Computers Ltd., Cambridge, England
  6.  *
  7.  * $Log:    domain.h,v $
  8.  * Revision 1.1  95/01/11  10:19:09  kwelton
  9.  * Initial revision
  10.  * 
  11.  * Revision 1.3  88/06/17  20:18:59  beta
  12.  * Acorn Unix initial beta version
  13.  * 
  14.  */
  15. /* @(#)domain.h    1.2 87/05/15 3.2/4.3NFSSRC */
  16. /*
  17.  * Copyright (c) 1982, 1986 Regents of the University of California.
  18.  * All rights reserved.  The Berkeley software License Agreement
  19.  * specifies the terms and conditions for redistribution.
  20.  *
  21.  *    @(#)domain.h    7.1 (Berkeley) 6/4/86
  22.  */
  23.  
  24. /*
  25.  * Structure per communications domain.
  26.  */
  27. struct    domain {
  28.     int    dom_family;        /* AF_xxx */
  29.     char    *dom_name;
  30.     int    (*dom_init)();        /* initialize domain data structures */
  31.     int    (*dom_externalize)();    /* externalize access rights */
  32.     int    (*dom_dispose)();    /* dispose of internalized rights */
  33.     struct    protosw *dom_protosw, *dom_protoswNPROTOSW;
  34.     struct    domain *dom_next;
  35. };
  36.  
  37. #ifdef KERNEL
  38. struct    domain *domains;
  39. #endif
  40.  
  41. /* EOF domain.h */
  42.