diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-26 07:55:01 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2002-06-26 07:55:01 +0800 |
commit | 35c1fa2db63707217a75b2f66906582239f39a48 (patch) | |
tree | 62559358b307006d017300378133ddd3aaa51a6f | |
parent | 6a7d3a2991321a9f5010554ab85e26e0d3c104ea (diff) | |
download | pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.tar pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.tar.gz pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.tar.bz2 pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.tar.lz pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.tar.xz pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.tar.zst pttbbs-35c1fa2db63707217a75b2f66906582239f39a48.zip |
MULTI_SERVER, nusers[]
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk@348 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | pttbbs/include/pttstruct.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pttbbs/include/pttstruct.h b/pttbbs/include/pttstruct.h index 5a742150..959e7fe0 100644 --- a/pttbbs/include/pttstruct.h +++ b/pttbbs/include/pttstruct.h @@ -1,4 +1,4 @@ -/* $Id: pttstruct.h,v 1.17 2002/06/23 03:33:25 ptt Exp $ */ +/* $Id: pttstruct.h,v 1.18 2002/06/25 23:55:01 in2 Exp $ */ #ifndef INCLUDE_STRUCT_H #define INCLUDE_STRUCT_H @@ -246,6 +246,9 @@ typedef struct userinfo_t { int sex; char color; int mind; +#ifdef MULTI_SERVER + char hostid; +#endif } userinfo_t; typedef struct water_t { @@ -325,6 +328,7 @@ typedef struct { time_t Btouchtime; int Bnumber; int Bbusystate; + short nusers[MAX_BOARD]; char gap2[1024]; /* avoid some memory error / buffer overflow */ /* pttcache */ |