diff options
Diffstat (limited to 'src/fe-common/irc/dcc/fe-dcc-server.c')
-rw-r--r-- | src/fe-common/irc/dcc/fe-dcc-server.c | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/src/fe-common/irc/dcc/fe-dcc-server.c b/src/fe-common/irc/dcc/fe-dcc-server.c new file mode 100644 index 0000000..eaab963 --- /dev/null +++ b/src/fe-common/irc/dcc/fe-dcc-server.c @@ -0,0 +1,83 @@ +/* + fe-dcc-server.c : irssi + + Copyright (C) 2003 Mark Trumbull + + 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 2 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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +*/ + +#include "module.h" +#include <irssi/src/core/signals.h> +#include <irssi/src/core/commands.h> +#include <irssi/src/core/network.h> +#include <irssi/src/core/levels.h> + +#include <irssi/src/irc/dcc/dcc-server.h> + +#include <irssi/src/fe-common/irc/dcc/module-formats.h> +#include <irssi/src/fe-common/core/printtext.h> +#include <irssi/src/fe-common/core/themes.h> + +static void dcc_server_started(SERVER_DCC_REC *dcc) +{ + if (!IS_DCC_SERVER(dcc)) { + return; + } + + printformat(dcc->server, NULL, MSGLEVEL_DCC, + IRCTXT_DCC_SERVER_STARTED, dcc->port); +} + +static void dcc_closed(SERVER_DCC_REC *dcc) +{ + /* We don't want to print a msg if its just starting a chat/get */ + /* and getting rid of the leftover SERVER_DCC_REC */ + if (!IS_DCC_SERVER(dcc) || dcc->connection_established) { + return; + } + + printformat(dcc->server, NULL, MSGLEVEL_DCC, + IRCTXT_DCC_SERVER_CLOSED, dcc->port); +} + +static void sig_dcc_list_print(SERVER_DCC_REC *dcc) +{ + /* We don't want to print a msg if its just starting a chat/get */ + /* and getting rid of the leftover SERVER_DCC_REC */ + if (!IS_DCC_SERVER(dcc) || dcc->connection_established) { + return; + } + + /* SERVER: Port(59) - Send(on) - Chat(on) - Fserve(on) */ + printformat(NULL, NULL, MSGLEVEL_DCC, IRCTXT_DCC_LIST_LINE_SERVER, + "SERVER", dcc->port, dcc->accept_send ? "on" : "off", + dcc->accept_chat ? "on" : "off", + dcc->accept_fserve ? "on" : "off"); +} + +void fe_dcc_server_init(void) +{ + signal_add("dcc server started", (SIGNAL_FUNC) dcc_server_started); + signal_add("dcc closed", (SIGNAL_FUNC) dcc_closed); + signal_add("dcc list print", (SIGNAL_FUNC) sig_dcc_list_print); +} + +void fe_dcc_server_deinit(void) +{ + signal_remove("dcc server started", (SIGNAL_FUNC) dcc_server_started); + signal_remove("dcc closed", (SIGNAL_FUNC) dcc_closed); + signal_remove("dcc list print", (SIGNAL_FUNC) sig_dcc_list_print); +} + |