/[LeafOK_CVS]/lbbs/include/common.h
ViewVC logotype

Contents of /lbbs/include/common.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.21 - (show annotations)
Tue May 6 10:33:26 2025 UTC (10 months, 1 week ago) by sysadm
Branch: MAIN
Changes since 1.20: +1 -1 lines
Content type: text/x-chdr
Use LICENSE instead of data/license.txt

1 /***************************************************************************
2 common.h - description
3 -------------------
4 Copyright : (C) 2004-2025 by Leaflet
5 Email : leaflet@leafok.com
6 ***************************************************************************/
7
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 3 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17 #ifndef _COMMON_H_
18 #define _COMMON_H_
19
20 #include <stddef.h>
21
22 #define LINE_BUFFER_LEN 1024
23 #define FILE_PATH_LEN 4096
24 #define MAX_FILE_LINES 65536
25
26 // Version
27 extern char app_version[256];
28
29 // Enviroment
30 #define CONF_BBSNET "conf/bbsnet.conf"
31
32 #define LOG_FILE_INFO "log/bbsd.log"
33 #define LOG_FILE_ERROR "log/error.log"
34
35 #define DATA_WELCOME "data/welcome.txt"
36 #define DATA_REGISTER "data/register.txt"
37 #define DATA_GOODBYE "data/goodbye.txt"
38 #define DATA_LICENSE "LICENSE"
39 #define DATA_COPYRIGHT "data/copyright.txt"
40 #define DATA_LOGIN_ERROR "data/login_error.txt"
41 #define DATA_ACTIVE_BOARD "data/active_board.txt"
42 #define DATA_READ_HELP "data/read_help.txt"
43
44 #define VAR_MAX_USER_ONLINE "var/max_user_online.dat"
45
46 // Network
47 extern int socket_server;
48 extern int socket_client;
49 extern char hostaddr_server[50];
50 extern char hostaddr_client[50];
51 extern int port_server;
52 extern int port_client;
53
54 // Signal
55 #define SIG_RELOAD_MENU 0x22
56
57 extern const char *str_space(char *string, int length);
58 extern const char *get_time_str(char *string, size_t length);
59
60 // Signal handler
61 extern void reload_bbs_menu(int);
62 extern void system_exit(int);
63 extern void child_exit(int);
64
65 // System
66 extern int SYS_exit;
67 extern int SYS_child_process_count;
68
69 #endif //_COMMON_H_

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1