]> git.0d.be Git - empathy.git/blob - tests/test-irc-helper.h
Merge branch 'sasl'
[empathy.git] / tests / test-irc-helper.h
1 #include <stdlib.h>
2 #include <string.h>
3
4 #include <libempathy/empathy-irc-server.h>
5 #include <libempathy/empathy-irc-network.h>
6 #include <libempathy/empathy-irc-network-manager.h>
7
8 #ifndef __CHECK_IRC_HELPER_H__
9 #define __CHECK_IRC_HELPER_H__
10
11 struct server_t
12 {
13   gchar *address;
14   guint port;
15   gboolean ssl;
16 };
17
18 void check_server (EmpathyIrcServer *server, const gchar *_address,
19     guint _port, gboolean _ssl);
20
21 void check_network (EmpathyIrcNetwork *network, const gchar *_name,
22     const gchar *_charset, struct server_t *_servers, guint nb_servers);
23
24 #endif /* __CHECK_IRC_HELPER_H__ */