Merge branch 'benny' of s416155/ZSIK_projekt_1 into master

This commit is contained in:
Nicol Radwan 2019-12-27 22:34:59 +00:00 committed by Gogs
commit 3e8b7b11d4

55
SerwerC.c Normal file
View File

@ -0,0 +1,55 @@
#include <sys/types.h>
#include <sys/socket.h>
#include <stdio.h>
#include <netinet/in.h>
#include <string.h>
#include <arpa/inet.h>
#include <unistd.h>
int main(void)
{
int Port;
char Buffor[1024];
int gniazdo1, gniazdo2;
struct sockaddr_in Serwer, Klient;
socklen_t dl = sizeof(struct sockaddr_in);
printf("Podaj port do nas³uchiwania:");
scanf("%u", &Port);
gniazdo1 = socket(PF_INET, SOCK_STREAM, 0);
Serwer.sin_family = AF_INET;
Serwer.sin_port = htons(port);
Serwer.sin_addr.s_addr = INADDR_ANY;
if (bind(gniazdo1, (struct sockaddr*) &Serwer, sizeof(Serwer < 0)
{
printf("Bind nie powiodl sie.\n");
return 1;
}
if (listen(gniazdo1, 10) < 0)
{
printf("Listen nie powiodl sie.\n");
return 1;
}
printf("Czekam na polaczenie ...\n");
while ((gniazdo2 = accept(gniazdo1,(struct sockaddr*) &Klient, &dl)) > 0)
{
memset(bufor, 0, 1024);
recv(gniazdo2, bufor, 1024, 0);
printf("Wiadomosc od %s: %s\n",inet_ntoa(Klient.sin_addr),Buffor);
close(gniazdo2);
}
close(gniazdo1);
return 0;
}