home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 22 gnu / 22-gnu.zip / gnunet10.zip / source / headers / osockaddr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-13  |  260 b   |  11 lines

  1. #ifndef __OSOCKADDR_H__
  2. #define __OSOCKADDR_H__
  3.  
  4. /* 4.3BSD sockaddr structure (used by talk protocol).  */
  5. struct osockaddr {
  6.     u_short    sa_family;        /* address family */
  7.     char    sa_data[14];        /* up to 14 bytes of direct address */
  8. };
  9.  
  10. #endif /* __OSOCKADDR_H__ */
  11.