Projekt_SIK/server/uberProstyServer.c

77 lines
2.5 KiB
C
Raw Normal View History

2019-11-11 18:37:06 +01:00
#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>
#include <unistd.h>
int main(void) {
char bufor[1024], rBufor[1024], tBufor[1024]; //wiadomosc
int gniazdo, gniazdo2, rGniazdo, tGniazdo;
2019-11-20 10:35:02 +01:00
struct sockaddr_in adr, rNadawca, tNadawca, adrS;
2019-11-11 18:37:06 +01:00
socklen_t dl = sizeof(struct sockaddr_in);
gniazdo = socket(PF_INET, SOCK_STREAM, 0);
2019-11-20 10:35:02 +01:00
gniazdo2 = socket(PF_INET, SOCK_STREAM, 0);
//adres do odbierania widomosci od klienta
2019-11-11 18:37:06 +01:00
adr.sin_family = AF_INET;
adr.sin_port = htons(44444); //port
adr.sin_addr.s_addr = INADDR_ANY;
2019-11-20 10:35:02 +01:00
//adres do wysylania widomosci do klienta
adrS.sin_family = AF_INET;
adrS.sin_port = htons(44445); //port
adrS.sin_addr.s_addr = INADDR_ANY;
printf("Odbieram na %s:%d\n", inet_ntoa(adr.sin_addr), ntohs(adr.sin_port));
printf("Wysylam na %s:%d\n", inet_ntoa(adrS.sin_addr), ntohs(adrS.sin_port));
2019-11-11 18:37:06 +01:00
2019-11-20 10:35:02 +01:00
//konfiguracja do odbierania wiadomosci
2019-11-11 18:37:06 +01:00
if (bind(gniazdo, (struct sockaddr*) &adr, sizeof(adr)) < 0) { //bind
printf("Bind nie powiodl sie.\n");
return 1;
}
if (listen(gniazdo, 10) < 0) { //listen
printf("Listen nie powiodl sie.\n");
return 1;
}
2019-11-20 10:35:02 +01:00
//konfiguracja do wysylania wiadomosci
if (bind(gniazdo2, (struct sockaddr*) &adrS, sizeof(adrS)) < 0) { //bind
printf("Bind nie powiodl sie.\n");
return 1;
}
if (listen(gniazdo2, 10) < 0) { //listen
printf("Listen nie powiodl sie.\n");
return 1;
}
printf("Polaczenia skonfigurowane ...\n");
if (fork() == 0){ //child wejdzie w to TUTAJ WYSYLAM WIDOMOSCI co 5 sekund
while ((tGniazdo = accept(gniazdo2, (struct sockaddr*) &tNadawca, &dl)) > 0) {
2019-11-11 18:37:06 +01:00
int licznik = 1;
while(1){
2019-11-20 10:35:02 +01:00
memset(tBufor, 0, 1024);
tBufor[1] = licznik + '0';
2019-11-11 18:37:06 +01:00
printf("Wysylam licznik\n");
2019-11-20 10:35:02 +01:00
send(tGniazdo, tBufor, 1024, 0);
2019-11-11 18:37:06 +01:00
licznik += 1;
2019-11-22 14:51:44 +01:00
sleep(3);
2019-11-11 18:37:06 +01:00
}
}
2019-11-20 10:35:02 +01:00
} else { //tutaj odbieram wiadomosci
while ((rGniazdo = accept(gniazdo, (struct sockaddr*) &rNadawca, &dl)) > 0) { //odbieranie
memset(rBufor, 0, 1024);
recv(rGniazdo, rBufor, 1024, 0);
printf("Wiadomosc od %s: %s\n", inet_ntoa(rNadawca.sin_addr), rBufor);
close(rGniazdo);
}
2019-11-11 18:37:06 +01:00
}
2019-11-20 10:35:02 +01:00
//do tego w sumie nigdy nie dojdziemy
close(gniazdo2);
2019-11-11 18:37:06 +01:00
close(gniazdo);
return 0;
}