From 86fab91ae6c4a40af24b1d3f98601ba5d6ca9adb Mon Sep 17 00:00:00 2001 From: Haru Date: Sun, 23 Mar 2014 20:54:56 +0100 Subject: Added GPL information on interactive server startup --- src/common/console.c | 11 +++++++++++ src/common/console.h | 1 + 2 files changed, 12 insertions(+) (limited to 'src/common') diff --git a/src/common/console.c b/src/common/console.c index 477141b48..cc0e920c4 100644 --- a/src/common/console.c +++ b/src/common/console.c @@ -75,6 +75,16 @@ void display_title(void) { ShowInfo("Compiled with %s\n", sysinfo->compiler()); ShowInfo("Compile Flags: %s\n", sysinfo->cflags()); } + +/** + * Shows a license notice as per GNU GPL recommendation. + */ +void display_gplnotice(void) +{ + ShowInfo("Hercules, Copyright (C) 2012-2015, Hercules Dev Team and others.\n"); + ShowInfo("Licensed under the GNU General Public License, version 3 or later.\n"); +} + #ifdef CONSOLE_INPUT int console_parse_key_pressed(void) { @@ -532,6 +542,7 @@ void console_defaults(void) console->init = console_init; console->final = console_final; console->display_title = display_title; + console->display_gplnotice = display_gplnotice; #ifdef CONSOLE_INPUT console->input = &console_input_s; console->input->parse_init = console_parse_init; diff --git a/src/common/console.h b/src/common/console.h index 102a1beaf..676747465 100644 --- a/src/common/console.h +++ b/src/common/console.h @@ -84,6 +84,7 @@ struct console_interface { void (*init) (void); void (*final) (void); void (*display_title) (void); + void (*display_gplnotice) (void); struct console_input_interface *input; }; -- cgit v1.2.3-70-g09d2