aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-irc-helper.h
blob: ed7a6924e9de7f88f4c052ef16f4691a46893f7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdlib.h>
#include <string.h>

#include "empathy-irc-network.h"
#include "empathy-irc-network-manager.h"
#include "empathy-irc-server.h"

#ifndef __CHECK_IRC_HELPER_H__
#define __CHECK_IRC_HELPER_H__

struct server_t
{
  gchar *address;
  guint port;
  gboolean ssl;
};

void check_server (EmpathyIrcServer *server, const gchar *_address,
    guint _port, gboolean _ssl);

void check_network (EmpathyIrcNetwork *network, const gchar *_name,
    const gchar *_charset, struct server_t *_servers, guint nb_servers);

#endif /* __CHECK_IRC_HELPER_H__ */