| 1 |
/*************************************************************************** |
/*************************************************************************** |
| 2 |
bbs.c - description |
bbs.c - description |
| 3 |
------------------- |
------------------- |
| 4 |
begin : Mon Oct 18 2004 |
Copyright : (C) 2004-2025 by Leaflet |
| 5 |
copyright : (C) 2004 by Leaflet |
Email : leaflet@leafok.com |
|
email : leaflet@leafok.com |
|
| 6 |
***************************************************************************/ |
***************************************************************************/ |
| 7 |
|
|
| 8 |
/*************************************************************************** |
/*************************************************************************** |
| 9 |
* * |
* * |
| 10 |
* This program is free software; you can redistribute it and/or modify * |
* 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 * |
* it under the terms of the GNU General Public License as published by * |
| 12 |
* the Free Software Foundation; either version 2 of the License, or * |
* the Free Software Foundation; either version 3 of the License, or * |
| 13 |
* (at your option) any later version. * |
* (at your option) any later version. * |
| 14 |
* * |
* * |
| 15 |
***************************************************************************/ |
***************************************************************************/ |
| 16 |
|
|
| 17 |
#include "bbs.h" |
#include "bbs.h" |
| 18 |
|
#include "user_priv.h" |
| 19 |
|
#include <stdio.h> |
| 20 |
|
#include <signal.h> |
| 21 |
#include <time.h> |
#include <time.h> |
| 22 |
|
|
| 23 |
//BBS enviroment |
// BBS enviroment |
| 24 |
char BBS_id[20] = ""; |
char BBS_id[20] = ""; |
| 25 |
char BBS_name[50] = ""; |
char BBS_name[50] = ""; |
| 26 |
char BBS_server[256] = ""; |
char BBS_server[256] = ""; |
| 27 |
char BBS_address[50] = ""; |
char BBS_address[50] = ""; |
| 28 |
unsigned int BBS_port = 23; |
in_port_t BBS_port = 23; |
| 29 |
long BBS_max_client = 256; |
unsigned int BBS_max_client = 256; |
| 30 |
long BBS_max_user = 10000; |
unsigned int BBS_max_user = 10000; |
| 31 |
char BBS_start_dt[50] = "2004年 1月 1日"; |
char BBS_start_dt[50] = "2004年 1月 1日"; |
| 32 |
|
|
| 33 |
BBS_user_priv BBS_priv; |
char BBS_username[BBS_username_max_len + 1]; |
| 34 |
|
char BBS_user_tz[BBS_user_tz_max_len + 1]; |
|
int BBS_passwd_complex = 0; |
|
| 35 |
|
|
| 36 |
time_t BBS_login_tm; |
time_t BBS_login_tm; |
| 37 |
time_t BBS_last_access_tm; |
time_t BBS_last_access_tm; |
| 38 |
time_t BBS_last_sub_tm; |
|
| 39 |
|
char BBS_current_section_name[BBS_section_name_max_len + 1]; |
| 40 |
|
|
| 41 |
|
char *setuserfile(char *buf, size_t len, const char *filename) |
| 42 |
|
{ |
| 43 |
|
snprintf(buf, len, "%s/%ld", filename, BBS_priv.uid); |
| 44 |
|
return buf; |
| 45 |
|
} |