summaryrefslogtreecommitdiff
path: root/src/plugins/relay/relay-server.h
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2009-10-29 17:23:25 +0100
committerSebastien Helleu <flashcode@flashtux.org>2009-10-29 17:23:25 +0100
commit999de8bfc15bdaded7d85dc7d6e4617e07d2220c (patch)
treeb0d631b70611613825e366a85adbd9d5d12e0461 /src/plugins/relay/relay-server.h
parent5a8c35f6b0e14e19ea6631b5e65153a368267a4d (diff)
downloadweechat-999de8bfc15bdaded7d85dc7d6e4617e07d2220c.zip
Add partial irc-proxy feature to relay plugin
Diffstat (limited to 'src/plugins/relay/relay-server.h')
-rw-r--r--src/plugins/relay/relay-server.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/plugins/relay/relay-server.h b/src/plugins/relay/relay-server.h
new file mode 100644
index 000000000..a1cb39df2
--- /dev/null
+++ b/src/plugins/relay/relay-server.h
@@ -0,0 +1,52 @@
+/*
+ * Copyright (c) 2003-2009 by FlashCode <flashcode@flashtux.org>
+ * See README for License detail, AUTHORS for developers list.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+
+#ifndef __WEECHAT_RELAY_SERVER_H
+#define __WEECHAT_RELAY_SERVER_H 1
+
+struct t_relay_server
+{
+ enum t_relay_protocol protocol; /* protocol (irc,..) */
+ char *protocol_string; /* string used for protocol */
+ /* example: server for irc protocol */
+ int port; /* listening on this port */
+ int sock; /* socket for connection */
+ struct t_hook *hook_fd; /* hook for socket */
+ time_t start_time; /* start time */
+ struct t_relay_server *prev_server;/* link to previous server */
+ struct t_relay_server *next_server;/* link to next server */
+};
+
+extern struct t_relay_server *relay_servers;
+extern struct t_relay_server *last_relay_server;
+
+extern void relay_server_get_protocol_string (const char *protocol_and_string,
+ char **protocol,
+ char **protocol_string);
+extern struct t_relay_server *relay_server_search (const char *protocol_and_string);
+extern struct t_relay_server *relay_server_search_port (int port);
+extern struct t_relay_server *relay_server_new (enum t_relay_protocol protocol,
+ const char *protocol_string,
+ int port);
+extern void relay_server_update_port (struct t_relay_server *server, int port);
+extern void relay_server_free (struct t_relay_server *server);
+extern void relay_server_free_all ();
+extern void relay_server_print_log ();
+
+#endif /* relay-server.h */