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 | 1819e27114ef774152ce9d50cfc8b9f00fda526c (patch) | |
tree | 7eb5280aa634e83121b934e959ab1d9962837fea /include | |
parent | 0e546fb810cc4a81421f06db616c1216e4e41aa9 (diff) | |
download | pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.tar pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.tar.gz pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.tar.bz2 pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.tar.lz pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.tar.xz pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.tar.zst pttbbs-1819e27114ef774152ce9d50cfc8b9f00fda526c.zip |
MULTI_SERVER, nusers[]
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@348 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include')
-rw-r--r-- | include/pttstruct.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index 5a742150..959e7fe0 100644 --- a/include/pttstruct.h +++ b/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 */ |