home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lansystk.zip / INCLUDE / MPTN / SYS / UN.H < prev   
C/C++ Source or Header  |  1998-05-08  |  2KB  |  46 lines

  1. /********************************************************Copyright.IBM*****/
  2. /*                                                                        */
  3. /*                                                                        */
  4. /*      Multi-Protocol Transport Services - un.h                          */
  5. /*                                                                        */
  6. /*      Licensed Materials - Property of IBM (R)                          */
  7. /*      5622-069                                                          */
  8. /*      (C) Copyright IBM Corp. 1993, All right reserved.                 */
  9. /*      US Government Users Restricted Rights - Use, duplication,         */
  10. /*      disclosure restricted by GSA ADP Schedule Contract with IBM Corp. */
  11. /*                                                                        */
  12. /********************************************************Copyright.IBM*****/
  13.  
  14.  
  15.  
  16.  
  17. /*
  18.  * Copyright (c) 1982, 1986 Regents of the University of California.
  19.  * All rights reserved.
  20.  *
  21.  * Redistribution and use in source and binary forms are permitted
  22.  * provided that this notice is preserved and that due credit is given
  23.  * to the University of California at Berkeley. The name of the University
  24.  * may not be used to endorse or promote products derived from this
  25.  * software without specific prior written permission. This software
  26.  * is provided ``as is'' without express or implied warranty.
  27.  *
  28.  *      @(#)un.h        7.2 (Berkeley) 12/30/87
  29.  */
  30. #ifndef MPTNUN
  31. #define MPTNUN
  32.  
  33. /*
  34.  * Definitions for UNIX IPC domain.
  35.  */
  36. struct  sockaddr_un {
  37.         short   sun_family;             /* AF_UNIX */
  38.         char    sun_path[108];          /* path name (gag) */
  39. };
  40.  
  41. #ifdef KERNEL
  42. int     unp_discard();
  43. #endif /* KERNEL */
  44.  
  45. #endif /* MPTNUN */
  46.