5c7e5990bf090bdf61be7bce9cea5857f2bd764c
[cascardo/chat.git] / tictactoe.c
1 /*
2  *  Copyright (C) 2008  Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
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 2 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
20 #define _GNU_SOURCE
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <udns.h>
24 #include <unistd.h>
25 #include <string.h>
26 #include "tcp_connect.h"
27 #include "iksemel_extra.h"
28
29 int
30 myhook (void *data, int type, iks *stanza)
31 {
32   char *s = iks_string (iks_stack (stanza), stanza);
33   write (1, s, strlen (s));
34   return IKS_OK;
35 }
36
37 void
38 write_stream (int fd, char *server)
39 {
40   char *buffer = NULL;
41   asprintf (&buffer, "<stream:stream xmlns='jabber:client' "
42                      "xmlns:stream='http://etherx.jabber.org/streams' "
43                      "version='1.0' to='%s'>", server);
44   write (fd, buffer, strlen (buffer));
45   free (buffer);
46 }
47
48 void
49 loop (iksparser *parser, int fd)
50 {
51   char buffer[4096];
52   int r;
53   while ((r = read (fd, buffer, sizeof (buffer))) > 0)
54     iks_parse (parser, buffer, r, 0);
55 }
56
57 int
58 main (int argc, char **argv)
59 {
60   char *server = "jabber-br.org";
61   int fd;
62   iksparser *parser;
63   dns_init (NULL, 1);
64   fd = hc_tcp_connect (server, "xmpp-client");
65   parser = iks_extra_stream_new (NULL, myhook);
66   write_stream (fd, server);
67   loop (parser, fd);
68   return 0;
69 }