blob: 5b3d25f572152c4a48982751410fe6d041ee8658 (
plain)
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
|
#ifndef IRSSI_IRC_PROXY_PROXY_H
#define IRSSI_IRC_PROXY_PROXY_H
#include <irssi/src/common.h>
#include <irssi/src/core/network.h>
#include <irssi/src/irc/core/irc.h>
#include <irssi/src/irc/core/irc-servers.h>
typedef struct {
int port;
char *port_or_path;
char *ircnet;
int tag;
GIOChannel *handle;
GSList *clients;
} LISTEN_REC;
typedef struct {
char *nick, *addr;
NET_SENDBUF_REC *handle;
int recv_tag;
char *proxy_address;
LISTEN_REC *listen;
IRC_SERVER_REC *server;
unsigned int pass_sent:1;
unsigned int user_sent:1;
unsigned int connected:1;
unsigned int want_ctcp:1;
unsigned int multiplex:1;
} CLIENT_REC;
#endif
|