diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-03-19 21:02:47 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2005-03-19 21:02:47 +0800 |
commit | 60b3015900838f0afbf3377fc3a75351be510cbe (patch) | |
tree | 4488111bc74655ed46406290bd982fa68c38a8d1 /include/pttstruct.h | |
parent | 5fdde9d65d7664bcff62833304144a26b2f74e30 (diff) | |
download | pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.tar pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.tar.gz pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.tar.bz2 pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.tar.lz pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.tar.xz pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.tar.zst pttbbs-60b3015900838f0afbf3377fc3a75351be510cbe.zip |
statistic
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2651 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include/pttstruct.h')
-rw-r--r-- | include/pttstruct.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index 23fda808..5bcf81f3 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -542,7 +542,7 @@ typedef struct { /* SHM 中的全域變數, 可用 shmctl 設定或顯示. 供動態調整或測試使用 */ union { - int v[1024]; + int v[512]; struct { int dymaxactive; /* 動態設定最大人數上限 */ int toomanyusers; /* 超過人數上限不給進的個數 */ @@ -551,9 +551,12 @@ typedef struct { time4_t now; #endif int nWelcomes; + /* 注意, 應保持 align sizeof(int) */ } e; } GV2; + /* statistic */ + int statistic[STAT_MAX]; /* 故鄉 fromcache */ unsigned int home_ip[MAX_FROM]; |