Chat p2p w C

0

Witam,

chciałbym Was poprosić o pomoc w stworzeniu chatu p2p w C. Kody mam z tej stronki [url]http://www.linuxhowtos.org/C_C++/socket.htm[/url]
Server:

#include <sys/types.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <string.h>
#include <netdb.h>
#include <stdio.h>

void error(const char *msg)
{
    perror(msg);
    exit(0);
}

int main(int argc, char *argv[])
{
   int sock, length, n;
   socklen_t fromlen;
   struct sockaddr_in server;
   struct sockaddr_in from;
   char buf[1024];

   if (argc < 2) {
      fprintf(stderr, "ERROR, no port provided\n");
      exit(0);
   }
   
   sock=socket(AF_INET, SOCK_DGRAM, 0);
   if (sock < 0) error("Opening socket");
   length = sizeof(server);
   bzero(&server,length);
   server.sin_family=AF_INET;
   server.sin_addr.s_addr=INADDR_ANY;
   server.sin_port=htons(atoi(argv[1]));
   if (bind(sock,(struct sockaddr *)&server,length)<0) 
       error("binding");
   fromlen = sizeof(struct sockaddr_in);
   while (1) {
       n = recvfrom(sock,buf,1024,0,(struct sockaddr *)&from,&fromlen);
       if (n < 0) error("recvfrom");
       write(1,"Received a datagram: ",21);
       write(1,buf,n);
       n = sendto(sock,"Got your message\n",17,
                  0,(struct sockaddr *)&from,fromlen);
       if (n  < 0) error("sendto");
   }
   return 0;
 } 

Client:

#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>

void error(const char *);
int main(int argc, char *argv[])
{
   int sock, n;
   unsigned int length;
   struct sockaddr_in server, from;
   struct hostent *hp;
   char buffer[256];
   
   if (argc != 3) { printf("Usage: server port\n");
                    exit(1);
   }
   sock= socket(AF_INET, SOCK_DGRAM, 0);
   if (sock < 0) error("socket");

   server.sin_family = AF_INET;
   hp = gethostbyname(argv[1]);
   if (hp==0) error("Unknown host");

   bcopy((char *)hp->h_addr, 
        (char *)&server.sin_addr,
         hp->h_length);
   server.sin_port = htons(atoi(argv[2]));
   length=sizeof(struct sockaddr_in);
   printf("Please enter the message: ");
   bzero(buffer,256);
   fgets(buffer,255,stdin);
   n=sendto(sock,buffer,
            strlen(buffer),0,(const struct sockaddr *)&server,length);
   if (n < 0) error("Sendto");
   n = recvfrom(sock,buffer,256,0,(struct sockaddr *)&from, &length);
   if (n < 0) error("recvfrom");
   write(1,"Got an ack: ",12);
   write(1,buffer,n);
   close(sock);
   return 0;
}

void error(const char *msg)
{
    perror(msg);
    exit(0);
} 

Prosze tylko o modyfikacje tego kodu. Dopiero zaczynam swoją przygodę z programowaniem, więc proszę o wyrozumialość. Ten czat bede uruchamiał w debianie. Zrobiłem makefile i dla servera wszystkie potrzebne pliki sie utworzyły, ale gdy uruchomiłem wyskoczył bład "ERROR, no port provided" czym to jest spowodowane? Dla clienta makefile w ogole nie utworzył zadnych plikow. Tym sie zajme jednak pozniej, ponieważ teraz najważniejszy jest kod w C. Potrzbuje komendy, które umozliwia polaczenie sie wiekszej ilosci klientow z serwerem oraz, aby zaden klient nie musiał czekac na odpowiedz od serwera w momencie, gdy juz inny klient jest polaczony z serwerem. Z gory dziekuje za pomoc i cenne wskazowki.

0
 if (argc < 2) {
      fprintf(stderr, "ERROR, no port provided\n");
      exit(0);
   }

No zgaduj.
Kod jest poprawny.

0

Jakbym wiedział o co chodzi to bym nie prosił o pomoc. Kod, wiem, że jest poprawny, ale je

0

jednak czegoś brakuje, ale o Tym już wspomniałem

0

ale gdy uruchomiłem wyskoczył bład "ERROR, no port provided" czym to jest spowodowane?

Właśnie tym kodem, który zacytowałem. Teraz ładnie poczytaj o przekazywaniu argumentów do programu.
Dodatkowe rzeczy to inna kwestia.

1 użytkowników online, w tym zalogowanych: 0, gości: 1