mirror of
https://github.com/weechat/weechat.git
synced 2026-06-28 05:46:38 +02:00
49 lines
1.5 KiB
C
49 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2003-2011 Sebastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* This file is part of WeeChat, the extensible chat client.
|
|
*
|
|
* WeeChat 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.
|
|
*
|
|
* WeeChat 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 WeeChat. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __WEECHAT_RELAY_H
|
|
#define __WEECHAT_RELAY_H 1
|
|
|
|
#define weechat_plugin weechat_relay_plugin
|
|
#define RELAY_PLUGIN_NAME "relay"
|
|
|
|
extern struct t_weechat_plugin *weechat_relay_plugin;
|
|
|
|
extern int relay_signal_upgrade_received;
|
|
|
|
/* relay protocol */
|
|
|
|
enum t_relay_protocol
|
|
{
|
|
RELAY_PROTOCOL_WEECHAT = 0, /* WeeChat protocol */
|
|
RELAY_PROTOCOL_IRC, /* IRC protocol (IRC proxy) */
|
|
/* number of relay protocols */
|
|
RELAY_NUM_PROTOCOLS,
|
|
};
|
|
|
|
#define RELAY_COLOR_CHAT weechat_color("chat")
|
|
#define RELAY_COLOR_CHAT_HOST weechat_color("chat_host")
|
|
#define RELAY_COLOR_CHAT_BUFFER weechat_color("chat_buffer")
|
|
|
|
extern char *relay_protocol_string[];
|
|
|
|
extern int relay_protocol_search (const char *name);
|
|
|
|
#endif /* __WEECHAT_RELAY_H */
|