mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 03:40:16 +02:00
clients to allow for scripting parts of the irssi-proxy. git-svn-id: file:///var/www/svn.irssi.org/SVN/irssi/trunk@4882 dbcabf3a-b0e7-0310-adc4-f8d773084564
26 lines
732 B
C
26 lines
732 B
C
#include "common.h"
|
|
|
|
#define MODULE_NAME "proxy"
|
|
|
|
#include "network.h"
|
|
#include "irc.h"
|
|
#include "irc-servers.h"
|
|
|
|
#include "proxy.h"
|
|
|
|
extern GSList *proxy_listens;
|
|
extern GSList *proxy_clients;
|
|
|
|
void proxy_listen_init(void);
|
|
void proxy_listen_deinit(void);
|
|
|
|
void proxy_settings_init(void);
|
|
|
|
void proxy_dump_data(CLIENT_REC *client);
|
|
void proxy_client_reset_nick(CLIENT_REC *client);
|
|
|
|
void proxy_outdata(CLIENT_REC *client, const char *data, ...);
|
|
void proxy_outdata_all(IRC_SERVER_REC *server, const char *data, ...);
|
|
void proxy_outserver(CLIENT_REC *client, const char *data, ...);
|
|
void proxy_outserver_all(IRC_SERVER_REC *server, const char *data, ...);
|
|
void proxy_outserver_all_except(CLIENT_REC *client, const char *data, ...);
|