|
Socket Endpoints
- TCP/IP communication occurs between 2 endpoints
- An endpoint is defined as an IP address and a port number
- To allow other protocols to merge into the socket abstraction,
address families are used
- We will use PF_INET for protocol family internet
- We will also use AF_INET for address family internet
- PF_INET = AF_INET = 2
|