account-widget-irc: set password-prompt param when needed (#644406)
[empathy-mirror.git] / tests / test-irc-helper.h
blobe375f6fb65f49b575741d609701d98572b77c667
1 #include <stdlib.h>
2 #include <string.h>
4 #include <libempathy/empathy-irc-server.h>
5 #include <libempathy/empathy-irc-network.h>
6 #include <libempathy/empathy-irc-network-manager.h>
8 #ifndef __CHECK_IRC_HELPER_H__
9 #define __CHECK_IRC_HELPER_H__
11 struct server_t
13 gchar *address;
14 guint port;
15 gboolean ssl;
18 void check_server (EmpathyIrcServer *server, const gchar *_address,
19 guint _port, gboolean _ssl);
21 void check_network (EmpathyIrcNetwork *network, const gchar *_name,
22 const gchar *_charset, struct server_t *_servers, guint nb_servers);
24 #endif /* __CHECK_IRC_HELPER_H__ */