Fix build for tarball
[cascardo/f2fchat.git] / f2fcmd.c
1 /*
2  *  Copyright (C) 2013  Thadeu Lima de Souza Cascardo <cascardo@cascardo.info>
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 3 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License along
15  *  with this program; if not, write to the Free Software Foundation, Inc.,
16  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <stdio.h>
20 #include <stdlib.h>
21 #include <string.h>
22 #include <errno.h>
23 #include <unistd.h>
24 #include <sys/socket.h>
25 #include <netinet/in.h>
26 #include <arpa/inet.h>
27 #include <netdb.h>
28
29 int main(int argc, char **argv)
30 {
31         int s;
32         struct sockaddr_in sa;
33         int r;
34         char buffer[256];
35         if (argc < 2) {
36                 fprintf(stderr, "Missing message argument.\n");
37                 exit(1);
38         }
39         s = socket(PF_INET, SOCK_DGRAM, 0);
40         if (s < 0) {
41                 fprintf(stderr, "Error creating socket: %s.\n", strerror(errno));
42                 exit(1);
43         }
44         sa.sin_family = AF_INET;
45         sa.sin_port = htons(17078);
46         sa.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
47         r = sendto(s, argv[1], strlen(argv[1]), 0, (struct sockaddr *) &sa, sizeof(sa));
48         if (r < 0) { 
49                 fprintf(stderr, "Error sending message: %s\n", strerror(errno));
50                 close(s);
51                 exit(1);
52         }
53         while ((r = recv(s, buffer, sizeof(buffer), 0)) > 0) {
54                 write(1, buffer, r);
55         }
56         close(s);
57         return 0;
58 }