removed eventsoff flag

This commit is contained in:
Jeff Hill
1997-05-05 04:47:54 +00:00
parent 41aad467a6
commit 3a0de109a3
2 changed files with 2 additions and 5 deletions

View File

@@ -481,7 +481,6 @@ struct client *create_udp_client(unsigned sock)
client->recv.stk = 0ul;
client->recv.cnt = 0ul;
client->evuser = NULL;
client->eventsoff = FALSE;
client->disconnect = FALSE; /* for TCP only */
client->ticks_at_last_send = tickGet();
client->ticks_at_last_recv = tickGet();

View File

@@ -113,15 +113,14 @@ struct client{
unsigned long ticks_at_last_send;
unsigned long ticks_at_last_recv;
void *evuser;
char *pUserName;
char *pHostName;
SEM_ID blockSem; /* used whenever the client blocks */
int sock;
int proto;
int tid;
unsigned minor_version_number;
char eventsoff;
char disconnect; /* disconnect detected */
char *pUserName;
char *pHostName;
};
@@ -167,7 +166,6 @@ unsigned size; /* for speed */
unsigned mask;
char modified; /* mod & ev flw ctrl enbl */
char send_lock; /* lock send buffer */
char get; /* T: get F: monitor */
};