UDP et TCP
Programmation socket:
Création du « socket »
#include <...>
int socket( int domain, int type, int protocol )
domain: AF_INET
type: SOCK_DGRAM : udp
SOCK_STREAM : tcp
protocol: 0
Structure adresse:
struct sockaddr_in {
short sin_family;
u_short sin_port;
struct in_addr sin_addr;
char sin_zero[8];
};
Diapositive précédente
Diapositive suivante
Revenir à la première diapositive
Afficher la version graphique