d1cor

socket_unix_receptor.c

Oct 6th, 2016
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.44 KB | None | 0 0
  1. /*******************************************
  2. * Author     : Diego Cordoba / @d1cor      *
  3. * Purpose    : Junco TIC                   *
  4. * Contact    : juncotic.com                *
  5. *******************************************/
  6.  
  7. #include<stdio.h>
  8. #include<stdlib.h>
  9. #include<sys/types.h>
  10. #include<sys/stat.h>
  11. #include<unistd.h>
  12. #include<string.h>
  13. #include<fcntl.h>
  14. #include<errno.h>
  15. #include<sys/socket.h>
  16. #include<sys/un.h>
  17.  
  18. #define MSG_SIZE 128
  19.  
  20. void usage(char* progname){
  21.     printf("Usage:\n\t%s <pathname>\n\n",progname);
  22. }
  23.  
  24.  
  25. int main(int argc, char** argv) {
  26.  
  27.     char *error;
  28.     int sockid;     //id del socket
  29.     struct sockaddr_un direccion;
  30.     char mensaje[MSG_SIZE];
  31.     int count;
  32.  
  33.     if(argc<2){
  34.         usage(*argv);
  35.         exit(1);
  36.     }
  37.  
  38.     if((sockid=socket(PF_UNIX,SOCK_DGRAM,0))<0){
  39.         error="socket";
  40.         goto err;
  41.     }
  42.  
  43.     //cargamos la direccion:
  44.     direccion.sun_family=AF_UNIX;
  45.     strcpy(direccion.sun_path,*(argv+1));
  46.  
  47.     if((bind(sockid,(struct sockaddr *)&direccion, sizeof(direccion)))<0){
  48.         error="bind";
  49.         goto err;
  50.     }
  51.     //se crea el archivo del socket
  52.  
  53.  
  54.     while(count=recv(sockid,mensaje,MSG_SIZE,0)){
  55.         if(count<0){
  56.             error="recvfrom";
  57.             goto err;
  58.         }
  59.         printf("Mensaje leido: %s",mensaje);
  60.         if(!strcmp(mensaje,"exit\n")){
  61.             printf("Gracias por participar\n");
  62.             break;
  63.         }
  64.     }
  65.  
  66.     close(sockid);
  67.     unlink(*(argv+1));
  68.     return 0;
  69.  
  70. err:
  71.     fprintf(stderr,"%s %d %s\n",error,errno,strerror(errno));
  72.     exit(1);
  73.  
  74.     return 0;
  75. }
Add Comment
Please, Sign In to add comment