Connection-Oriented
RECV
return N bytes have been receivedSEND
returns N bytes have successfully delivered to OS and maybe to destinationERROR
will be signaled on next operationGuaranteed data delivery
Guaranteed data ordering delivery
Type = SOCK_STREAM
(when creating socket)
Client-Server TCP/IP Apps:
server listens for client’s requests, executes them and answers
**#include <sys/socket.h>**
Client + Server:
**int socket (int family, int type, int protocol);**
Client:
**int connect (int sfd, const struct sockaddr *servaddr, socklen_t addrlen);**
Server:
**int bind(int sfd, const struct sockaddr *servaddr, socklen_t addrlen);
int listen(int sockfd, int backlog);
int accept(int sockfd, struct sockaddr *cliaddr, socklen_t *addrlen);**
Client + Server:
**#include <unistd.h>
int close(int sockfd);**
Socket Addresses - Generic: