Connection-Oriented Paradigm
Create a socket
socket()
Assign a name to the socket
bind()
Establish a queue for connections
listen()
Extract a connection from the queue
accept()
SERVER
read()
write()
CLIENT
Create a socket
socket()
Initiate a connection
connect()
write()
read()
established
Previous slide
Next slide
Back to first slide
View graphic version