Advanced Programming in the UNIX® Environment

(lily) #1
ptg10805159

590 Network IPC: Sockets Chapter 16


16.2 SocketDescr iptors


Asocket is an abstraction of a communication endpoint. Just as they would use file
descriptors to access files, applications use socket descriptors to access sockets. Socket
descriptors areimplemented as file descriptors in the UNIX System. Indeed, many of
the functions that deal with file descriptors, such asreadandwrite,will work with a
socket descriptor.
To create a socket, we call thesocketfunction.
#include <sys/socket.h>
int socket(intdomain,inttype,intprotocol);
Returns: file (socket) descriptor if OK,−1 on error
Thedomain argument determines the nature of the communication, including the
address format (described in moredetail in the next section). Figure16.1 summarizes
the domains specified by POSIX.1. The constants start withAF_(foraddress family)
because each domain has its own format for representing an address.

Domain Description
AF_INET IPv4 Internet domain
AF_INET6 IPv6 Internet domain (optional in POSIX.1)
AF_UNIX UNIX domain
AF_UNSPEC unspecified

Figure 16.1 Socket communication domains

We discuss the UNIX domain in Section 17.2. Most systems define theAF_LOCAL
domain also, which is an alias forAF_UNIX.TheAF_UNSPECdomain is a wildcardthat
represents ‘‘any’’domain. Historically,some platforms provide support for additional
network protocols, such as AF_IPXfor the NetWareprotocol family,but domain
constants for these protocols arenot defined by the POSIX.1 standard.
Thetypeargument determines the type of the socket, which further determines the
communication characteristics. The socket types defined by POSIX.1 aresummarized in
Figure16.2, but implementations arefree to add support for additional types.

Type Description
SOCK_DGRAM fixed-length, connectionless, unreliable messages
SOCK_RAW datagram interface to IP (optional in POSIX.1)
SOCK_SEQPACKET fixed-length, sequenced, reliable, connection-oriented messages
SOCK_STREAM sequenced, reliable, bidirectional, connection-oriented byte streams

Figure 16.2Socket types

Theprotocolargument is usually zero, to select the default protocol for the given
domain and socket type. When multiple protocols aresupported for the same domain
and socket type, we can use theprotocolargument to select a particular protocol. The
default protocol for aSOCK_STREAMsocket in theAF_INETcommunication domain is
Free download pdf