--- lbbs/src/common.c 2025/11/17 02:32:42 1.47 +++ lbbs/src/common.c 2025/11/28 03:23:58 1.49 @@ -14,6 +14,11 @@ // Version const char APP_INFO[] = PACKAGE_STRING " build on " __DATE__ " " __TIME__; +const char COPYRIGHT_INFO[] = "Copyright (C) 2004-2025 Leaflet \n" + "This program comes with ABSOLUTELY NO WARRANTY.\n" + "This is free software, and you are welcome to redistribute it \n" + "under certain conditions; see the GNU General Public License \n" + "version 3 for details.\n"; // Enviroment const char CONF_BBSD[] = "conf/bbsd.conf"; @@ -21,7 +26,8 @@ const char CONF_MENU[] = "var/menu_merge const char CONF_BBSNET[] = "conf/bbsnet.conf"; const char CONF_BWF[] = "conf/badwords.conf"; const char CONF_TOP10_MENU[] = "var/bbs_top_menu.conf"; -const char SSH_HOST_KEYFILE[] = "conf/ssh_host_rsa_key"; +const char SSH_HOST_RSA_KEY_FILE[] = "conf/ssh_host_rsa_key"; +const char SSH_HOST_ED25519_KEY_FILE[] = "conf/ssh_host_ed25519_key"; const char LOG_FILE_INFO[] = "log/bbsd.log"; const char LOG_FILE_ERROR[] = "log/error.log";