 |
Index for Section 9 |
|
 |
Alphabetical listing for S |
|
 |
Bottom of page |
|
sockaddr_in(9s)
NAME
sockaddr_in - Network: Defines the sockaddr_in data structure
SYNOPSIS
_________________________
Member Name Data Type
_________________________
sin_family sa_family_t
_________________________
MEMBERS
sin_family
Specifies the socket address family. Typically, you set this member in
the driver's attach interface to one of the address family values
defined in the file <socket.h>, such as AF_INET.
DESCRIPTION
The sockaddr_in data structure defines information related to the socket
address. The member of interest to network device driver writers is
sin_family. Typically, you set this member in the driver's attach interface
to the constant AF_INET.
FILES
<netinet/in.h>
 |
Index for Section 9 |
|
 |
Alphabetical listing for S |
|
 |
Top of page |
|