diff options
author | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-07-17 08:57:21 +0800 |
---|---|---|
committer | in2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-07-17 08:57:21 +0800 |
commit | 946083d56cf47891fc698c09e86bb4816392b66e (patch) | |
tree | 107418b8bd8d61bbc5dae35cc426356c65f84fbb /include/pttstruct.h | |
parent | ee0fcfc8fb094461d198ff965633401399f9ce33 (diff) | |
download | pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.tar pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.tar.gz pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.tar.bz2 pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.tar.lz pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.tar.xz pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.tar.zst pttbbs-946083d56cf47891fc698c09e86bb4816392b66e.zip |
reduce SHM size(remove realname)
git-svn-id: http://opensvn.csie.org/pttbbs/pttbbs/trunk/pttbbs@1054 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'include/pttstruct.h')
-rw-r--r-- | include/pttstruct.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/include/pttstruct.h b/include/pttstruct.h index d693f985..a69f48cc 100644 --- a/include/pttstruct.h +++ b/include/pttstruct.h @@ -1,4 +1,4 @@ -/* $Id: pttstruct.h,v 1.39 2003/07/05 07:58:09 in2 Exp $ */ +/* $Id: pttstruct.h,v 1.40 2003/07/17 00:57:21 in2 Exp $ */ #ifndef INCLUDE_STRUCT_H #define INCLUDE_STRUCT_H @@ -221,7 +221,6 @@ typedef struct userinfo_t { unsigned char sig; /* signal type */ char userid[IDLEN + 1]; char chatid[11]; /* chat id, if in chat mode */ - char realname[20]; char username[24]; char from[27]; /* machine name the user called in from */ int from_alias; @@ -231,7 +230,6 @@ typedef struct userinfo_t { int friend_online[MAX_FRIEND];/* point到線上好友 utmpshm的位置 */ /* 好友比較的cache 前兩個bit是狀態 */ int reject[MAX_REJECT]; - char pad[4]; /* original void *nextbfriend; */ int idoffset; /* shm id上的 offset */ int lock; int friendtotal; /* 好友比較的cache 大小 */ @@ -249,8 +247,8 @@ typedef struct userinfo_t { unsigned short int chc_win; unsigned short int chc_lose; unsigned short int chc_tie; - int mailalert; - int sex; + char mailalert; + char sex; char color; char mind[4]; } userinfo_t; |