]> git.0d.be Git - empathy.git/blob - tests/test-irc-helper.h
ed7a6924e9de7f88f4c052ef16f4691a46893f7d
[empathy.git] / tests / test-irc-helper.h
1 #include <stdlib.h>
2 #include <string.h>
3
4 #include "empathy-irc-network.h"
5 #include "empathy-irc-network-manager.h"
6 #include "empathy-irc-server.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__ */