client: added client_[gs]et_permission()
The code in command.c shouldn't mess with a pointer to client->permission. Provide an API for accessing this value.
This commit is contained in:
parent
bf6994d8e3
commit
2835e37684
10
src/client.c
10
src/client.c
@ -133,6 +133,16 @@ int client_is_expired(const struct client *client)
|
|||||||
return client->fd < 0;
|
return client->fd < 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int client_get_permission(const struct client *client)
|
||||||
|
{
|
||||||
|
return client->permission;
|
||||||
|
}
|
||||||
|
|
||||||
|
void client_set_permission(struct client *client, int permission)
|
||||||
|
{
|
||||||
|
client->permission = permission;
|
||||||
|
}
|
||||||
|
|
||||||
static inline void client_set_expired(struct client *client)
|
static inline void client_set_expired(struct client *client)
|
||||||
{
|
{
|
||||||
if (client->fd >= 0) {
|
if (client->fd >= 0) {
|
||||||
|
@ -33,6 +33,10 @@ void client_new(int fd, const struct sockaddr *addr);
|
|||||||
|
|
||||||
int client_is_expired(const struct client *client);
|
int client_is_expired(const struct client *client);
|
||||||
|
|
||||||
|
int client_get_permission(const struct client *client);
|
||||||
|
|
||||||
|
void client_set_permission(struct client *client, int permission);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Write a block of data to the client.
|
* Write a block of data to the client.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user