CITS3002 Computer Networks |
← prev | next → | CITS3002 | help3002 | CITS3002 schedule | |||
Domain AddressingLegal combinations of protocols and drivers are specified when the kernel is configured. For example, sockets that share common communication properties, such as naming conventions and protocol address formats, are grouped into address families. The Linux file /usr/include/bits/socket.h lists all supported address families.
Processes communicate using the client-server paradigm. A server process listens to a socket, one end of a bidirectional communication path and the client processes communicate with the server over another socket, the other end of the communication path.
The kernel maintains internal connections and routes data from client to
server.
CITS3002 Computer Networks, Lecture 8, Transport layer protocols and APIs, p10, 24th April 2024.
|