1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/* libinfinity - a GObject-based infinote implementation
* Copyright (C) 2007, 2008, 2009 Armin Burgmeier <armin@arbur.net>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
#include <libinfinity/common/inf-xmpp-connection.h>
#include <libinfinity/common/inf-xml-connection.h>
#include <libinfinity/common/inf-tcp-connection.h>
#include <libinfinity/common/inf-ip-address.h>
#include <libinfinity/common/inf-standalone-io.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
static void
error_cb(InfTcpConnection* connection,
GError* error,
gpointer user_data)
{
fprintf(stderr, "Error occured: %s\n", error->message);
/* if(inf_standalone_io_loop_running(INF_STANDALONE_IO(user_data)))
inf_standalone_io_loop_quit(INF_STANDALONE_IO(user_data));*/
}
static void
notify_status_cb(InfXmppConnection* xmpp,
const gchar* property,
gpointer user_data)
{
InfXmlConnectionStatus status;
g_object_get(G_OBJECT(xmpp), "status", &status,NULL);
switch(status)
{
case INF_XML_CONNECTION_OPENING:
printf("Opening\n");
break;
case INF_XML_CONNECTION_OPEN:
printf("Opened\n");
inf_xml_connection_close(INF_XML_CONNECTION(xmpp));
break;
case INF_XML_CONNECTION_CLOSING:
printf("Closing\n");
break;
case INF_XML_CONNECTION_CLOSED:
printf("Closed\n");
inf_standalone_io_loop_quit(INF_STANDALONE_IO(user_data));
break;
default:
g_assert_not_reached();
break;
}
}
int main(int argc, char* argv[])
{
InfIpAddress* addr;
InfStandaloneIo* io;
InfTcpConnection* connection;
InfXmppConnection* xmpp;
GError* error;
gnutls_global_init();
g_type_init();
#if 0
addr = inf_ip_address_new_from_string("88.198.49.206"); /* This is jabber.0x539.de aka durotan.0x539.de */
#else
addr = inf_ip_address_new_from_string("127.0.0.1"); /* This is localhost aka loopback */
#endif
io = inf_standalone_io_new();
error = NULL;
connection = inf_tcp_connection_new_and_open(INF_IO(io), addr, 5223, &error);
inf_ip_address_free(addr);
if(connection == NULL)
{
fprintf(stderr, "Could not open connection: %s\n", error->message);
g_error_free(error);
}
else
{
xmpp = inf_xmpp_connection_new(
connection,
INF_XMPP_CONNECTION_CLIENT,
NULL,
"jabber.0x539.de",
INF_XMPP_CONNECTION_SECURITY_BOTH_PREFER_TLS,
NULL,
NULL,
NULL
);
g_signal_connect(G_OBJECT(xmpp), "error", G_CALLBACK(error_cb), io);
g_signal_connect(G_OBJECT(xmpp), "notify::status", G_CALLBACK(notify_status_cb), io);
inf_standalone_io_loop(io);
}
g_object_unref(G_OBJECT(io));
if(connection)
g_object_unref(G_OBJECT(connection));
gnutls_global_deinit();
return 0;
}
/* vim:set et sw=2 ts=2: */
|