home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / header45.zip / stack16 / sys / un.h < prev   
C/C++ Source or Header  |  1999-05-11  |  2KB  |  41 lines

  1. /********************************************************Copyright.IBM*****/
  2. /*                                                                        */
  3. /*                                                                        */
  4. /*                                                                        */
  5. /*    OCO Source Materials                                                */
  6. /*    IBM Confidential (IBM Confidential-Restricted when combined         */
  7. /*    with the aggregated OCO source modules for this program)            */
  8. /*                                                                        */
  9. /*    5622-069                                                            */
  10. /*    (C) Copyright International Business Machines Corp. 1993            */
  11. /*                                                                        */
  12. /*                                                                        */
  13. /********************************************************Copyright.IBM*****/
  14.  
  15.  
  16. /*
  17.  * Copyright (c) 1982, 1986 Regents of the University of California.
  18.  * All rights reserved.
  19.  *
  20.  * Redistribution and use in source and binary forms are permitted
  21.  * provided that this notice is preserved and that due credit is given
  22.  * to the University of California at Berkeley. The name of the University
  23.  * may not be used to endorse or promote products derived from this
  24.  * software without specific prior written permission. This software
  25.  * is provided ``as is'' without express or implied warranty.
  26.  *
  27.  *      @(#)un.h        7.2 (Berkeley) 12/30/87
  28.  */
  29. #ifndef UN_H                           /* @A0a                             */
  30. #define UN_H                           /* @A0a                             */
  31.  
  32. /*
  33.  * Definitions for UNIX IPC domain.
  34.  */
  35. struct  sockaddr_un {
  36.         short   sun_family;            /* AF_UNIX                          */
  37.         char    sun_path[108];         /* path name (gag)                  */
  38. };
  39.  
  40. #endif /* UN_H */                      /* @A0a                             */
  41.