1 #ifndef __osockaddr_defined
2 #define __osockaddr_defined 1
3 
4 /* This is the 4.3 BSD `struct sockaddr' format, which is used as wire
5    format in the grotty old 4.3 `talk' protocol.  */
6 struct osockaddr
7 {
8   unsigned short int sa_family;
9   unsigned char sa_data[14];
10 };
11 
12 #endif
13