mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
Use formats instead of g_warning
Add some copyright headers here and there too.
This commit is contained in:
parent
06040fb30b
commit
203c00938a
9 changed files with 116 additions and 11 deletions
|
|
@ -26,6 +26,7 @@ real_sources = \
|
|||
fe-netsplit.c \
|
||||
fe-common-irc.c \
|
||||
fe-whois.c \
|
||||
fe-sasl.c \
|
||||
irc-completion.c \
|
||||
module-formats.c
|
||||
|
||||
|
|
|
|||
|
|
@ -69,6 +69,9 @@ void fe_netjoin_deinit(void);
|
|||
void fe_whois_init(void);
|
||||
void fe_whois_deinit(void);
|
||||
|
||||
void fe_sasl_init(void);
|
||||
void fe_sasl_deinit(void);
|
||||
|
||||
void irc_completion_init(void);
|
||||
void irc_completion_deinit(void);
|
||||
|
||||
|
|
@ -91,6 +94,7 @@ void fe_common_irc_init(void)
|
|||
fe_netsplit_init();
|
||||
fe_netjoin_init();
|
||||
fe_whois_init();
|
||||
fe_sasl_init();
|
||||
irc_completion_init();
|
||||
|
||||
settings_check();
|
||||
|
|
@ -116,6 +120,7 @@ void fe_common_irc_deinit(void)
|
|||
fe_netsplit_deinit();
|
||||
fe_netjoin_deinit();
|
||||
fe_whois_deinit();
|
||||
fe_sasl_deinit();
|
||||
irc_completion_deinit();
|
||||
|
||||
theme_unregister();
|
||||
|
|
|
|||
48
src/fe-common/irc/fe-sasl.c
Normal file
48
src/fe-common/irc/fe-sasl.c
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
fe-sasl.c : irssi
|
||||
|
||||
Copyright (C) 2015 The Lemon Man
|
||||
|
||||
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 "module-formats.h"
|
||||
#include "signals.h"
|
||||
#include "levels.h"
|
||||
|
||||
#include "printtext.h"
|
||||
|
||||
static void sig_sasl_success(IRC_SERVER_REC *server)
|
||||
{
|
||||
printformat(server, NULL, MSGLEVEL_CRAP, IRCTXT_SASL_SUCCESS);
|
||||
}
|
||||
|
||||
static void sig_sasl_failure(IRC_SERVER_REC *server, const char *reason)
|
||||
{
|
||||
printformat(server, NULL, MSGLEVEL_CRAP, IRCTXT_SASL_ERROR, reason);
|
||||
}
|
||||
|
||||
void fe_sasl_init(void)
|
||||
{
|
||||
signal_add("server sasl success", (SIGNAL_FUNC) sig_sasl_success);
|
||||
signal_add("server sasl failure", (SIGNAL_FUNC) sig_sasl_failure);
|
||||
}
|
||||
|
||||
void fe_sasl_deinit(void)
|
||||
{
|
||||
signal_remove("server sasl success", (SIGNAL_FUNC) sig_sasl_success);
|
||||
signal_remove("server sasl failure", (SIGNAL_FUNC) sig_sasl_failure);
|
||||
}
|
||||
|
|
@ -44,6 +44,8 @@ FORMAT_REC fecommon_irc_formats[] = {
|
|||
{ "setupserver_header", "%#Server Port Network Settings", 0 },
|
||||
{ "setupserver_line", "%#%|$[!20]0 $[5]1 $[10]2 $3", 4, { 0, 1, 0, 0 } },
|
||||
{ "setupserver_footer", "", 0 },
|
||||
{ "sasl_success", "SASL authentication succeeded", 0 },
|
||||
{ "sasl_error", "Cannot authenticate via SASL ($0)", 1, { 0 } },
|
||||
|
||||
/* ---- */
|
||||
{ NULL, "Channels", 0 },
|
||||
|
|
|
|||
|
|
@ -22,6 +22,8 @@ enum {
|
|||
IRCTXT_SETUPSERVER_HEADER,
|
||||
IRCTXT_SETUPSERVER_LINE,
|
||||
IRCTXT_SETUPSERVER_FOOTER,
|
||||
IRCTXT_SASL_SUCCESS,
|
||||
IRCTXT_SASL_ERROR,
|
||||
|
||||
IRCTXT_FILL_2,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue