diff options
author | Max Kellermann <max@duempel.org> | 2008-08-28 20:20:10 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-28 20:20:10 +0200 |
commit | 4e17ab11a8cdaa8082059225d5adbe2646f617c1 (patch) | |
tree | 89ae949686d63382d31cc7383d915fe6e6995c14 /src/client.c | |
parent | bdeb8e148e45d587dc1a4c696079a6cef559f0b0 (diff) | |
download | mpd-4e17ab11a8cdaa8082059225d5adbe2646f617c1.tar.gz mpd-4e17ab11a8cdaa8082059225d5adbe2646f617c1.tar.xz mpd-4e17ab11a8cdaa8082059225d5adbe2646f617c1.zip |
client: replace "expired" flag with fd==-1
Why waste 4 bytes for a flag which we can hide in another variable.
Diffstat (limited to 'src/client.c')
-rw-r--r-- | src/client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client.c b/src/client.c index 48fcff2c9..6188de7bf 100644 --- a/src/client.c +++ b/src/client.c @@ -66,7 +66,7 @@ struct client { char buffer[CLIENT_MAX_BUFFER_LENGTH]; size_t bufferLength; size_t bufferPos; - int fd; /* file descriptor */ + int fd; /* file descriptor; -1 if expired */ int permission; time_t lastTime; struct strnode *cmd_list; /* for when in list mode */ @@ -76,8 +76,6 @@ struct client { int cmd_list_dup; /* has the cmd_list been copied to private space? */ struct sllnode *deferred_send; /* for output if client is slow */ size_t deferred_bytes; /* mem deferred_send consumes */ - int expired; /* set whether this client should be closed on next - check of old clients */ unsigned int num; /* client number */ char *send_buf; @@ -133,12 +131,15 @@ static void set_send_buf_size(struct client *client) static inline int client_is_expired(const struct client *client) { - return client->expired; + return client->fd < 0; } static inline void client_set_expired(struct client *client) { - client->expired = 1; + if (client->fd >= 0) { + xclose(client->fd); + client->fd = -1; + } } static void client_init(struct client *client, int fd) @@ -156,7 +157,6 @@ static void client_init(struct client *client, int fd) client->cmd_list = NULL; client->cmd_list_tail = NULL; client->deferred_send = NULL; - client->expired = 0; client->deferred_bytes = 0; client->num = next_client_num++; client->send_buf_used = 0; |