/[LeafOK_CVS]/lbbs/src/bbs.c
ViewVC logotype

Diff of /lbbs/src/bbs.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.1 by sysadm, Tue Oct 19 17:10:39 2004 UTC Revision 1.4 by sysadm, Wed Mar 2 16:33:49 2005 UTC
# Line 15  Line 15 
15   *                                                                         *   *                                                                         *
16   ***************************************************************************/   ***************************************************************************/
17    
18    #include "bbs.h"
19    #include <time.h>
20    
21  //BBS enviroment  //BBS enviroment
22  char BBS_id[20] = "";  char BBS_id[20] = "";
23  char BBS_name[50] = "";  char BBS_name[50] = "";
24  char BBS_server[256] = "";  char BBS_server[256] = "";
25  char BBS_address[50] = "";  char BBS_address[50] = "";
26  unsigned int BBS_port = 23;  unsigned int BBS_port = 23;
27  int BBS_max_client = 256;  long BBS_max_client = 256;
28    long BBS_max_user = 10000;
29    char BBS_start_dt[50] = "2004Äê 1ÔÂ 1ÈÕ";
30    
31    char BBS_username[BBS_max_username_length];
32    BBS_user_priv BBS_priv;
33    int BBS_passwd_complex = 0;
34    
35    time_t BBS_login_tm;
36    time_t BBS_last_access_tm;
37    time_t BBS_last_sub_tm;
38    
39    char BBS_current_section_name[20];


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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