1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#define closesocket(param) close(param)
typedef int SOCKET;
typedef struct sockaddr_in SOCKADDR_IN;
typedef struct sockaddr SOCKADDR;
int main()
{
SOCKET sock;
SOCKET sock_client;
SOCKADDR_IN sin;
char *buffer="buffer\r\n";
int type=1;
if(sock=socket (AF_INET, SOCK_STREAM, 0) != INVALID_SOCKET)
{
printf("aucun probleme dans la condition pour la fonction socket\n");
sin.sin_addr.s_addr = htonl (INADDR_ANY);
sin.sin_family = AF_INET;
sin.sin_port = htons (65535);
bind (sock, (SOCKADDR *) &sin, sizeof(sin));
if(sock != SOCKET_ERROR)
{
printf("aucun probleme dans la condition pour la fonction bind\n");
listen(sock, 5);
if(sock != SOCKET_ERROR);
{
printf("aucun probleme dans la condition pour la fonction listen\n");
int taille = (int) sizeof(sin);
while(type)
{
sock_client=accept (sock, (SOCKADDR *) &sin, &taille);
if(sock_client != SOCKET_ERROR)
{
printf("aucun probleme dans la condition pour la fonction accept\n");
printf("quelqu'un vient de se conecter\n");
send(sock,buffer,strlen(buffer),0);
type=0;
}
}
}
}
}
closesocket(sock);
return EXIT_SUCCESS;
} |