Advertisement
BiRabittoh

Client1

Jan 11th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.48 KB | None | 0 0
  1.  /*
  2.  * Esercizio inventato da Marco Andronaco, LATO CLIENT
  3.  * Crea un client e un server INET STREAM_SOCKET.
  4.  * Quando il client si connette al server, il server chiede due numeri e ne restituisce la somma al client, chiude quindi la connessione.
  5.  */
  6.  
  7. #include <sys/types.h>
  8. #include <sys/socket.h>
  9. #include <netinet/in.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <unistd.h>
  13. #include <sys/types.h>
  14. #include <netdb.h>
  15.  
  16. int main(void){
  17.     int res, porta;
  18.     char * indirizzo;
  19.     //socket
  20.     int sd = socket(AF_INET, SOCK_STREAM, 0);
  21.     if(sd == -1){
  22.         puts("Errore nella socket().");
  23.         exit(EXIT_FAILURE);
  24.     }
  25.    
  26.     //ottengo informazioni sul server a cui connettermi
  27.     printf("Inserisci l'indirizzo del server: ");
  28.     scanf("%s%*c", indirizzo);
  29.     printf("Adesso il numero di porta: ");
  30.     scanf("%d%*c", &porta);
  31.    
  32.     //connect
  33.     struct hostent * hp;
  34.     hp = gethostbyname(indirizzo);
  35.     if (hp == NULL) {
  36.         puts("Errore nella gethostbyname().");
  37.         exit(EXIT_FAILURE);
  38.     }
  39.    
  40.     struct sockaddr_in client_address;
  41.     client_address.sin_family = AF_INET;
  42.     client_address.sin_port = htons(porta);
  43.     client_address.sin_addr = *(struct in_addr *)*hp->h_addr_list;
  44.    
  45.     socklen_t client_len = (socklen_t)sizeof(client_address);  
  46.    
  47.     res = connect(sd, (struct sockaddr *)&client_address, client_len);
  48.     if (res == -1) {
  49.         puts("Errore nella connect().");
  50.         exit(EXIT_FAILURE);
  51.     } else
  52.         puts("Connessione stabilita!");
  53.    
  54.     close(sd);
  55.     return 0;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement