irssi/src/irc/proxy/proxy.h

36 lines
648 B
C
Raw Normal View History

2019-05-01 22:22:22 +02:00
#ifndef IRSSI_IRC_PROXY_PROXY_H
#define IRSSI_IRC_PROXY_PROXY_H
2019-05-01 16:33:47 +02:00
#include <irssi/src/common.h>
2019-05-01 16:33:47 +02:00
#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;
2026-01-23 21:03:18 +01:00
GIOChannel *channel;
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