diff options
author | Kenny Levinsen <kl@kl.wtf> | 2020-08-03 00:56:10 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2020-08-03 00:56:10 +0200 |
commit | a003e926001e42f01c257028df4ee294c8d23639 (patch) | |
tree | dbffef2b612e89483e6563ecf04ddd0ae030e714 | |
parent | 3e301b8e708e94be0512d8425c33c418a81e5cf7 (diff) |
client: Prefix notification methods with 'send'
-rw-r--r-- | include/client.h | 6 | ||||
-rw-r--r-- | seatd/client.c | 6 | ||||
-rw-r--r-- | seatd/seat.c | 6 |
3 files changed, 10 insertions, 8 deletions
diff --git a/include/client.h b/include/client.h index 5046690..fb7574b 100644 --- a/include/client.h +++ b/include/client.h @@ -31,8 +31,8 @@ void client_kill(struct client *client); void client_destroy(struct client *client); int client_handle_connection(int fd, uint32_t mask, void *data); -int client_get_session(struct client *client); -int client_enable_seat(struct client *client); -int client_disable_seat(struct client *client); +int client_get_session(const struct client *client); +int client_send_enable_seat(struct client *client); +int client_send_disable_seat(struct client *client); #endif diff --git a/seatd/client.c b/seatd/client.c index 4ac5414..5ec80ae 100644 --- a/seatd/client.c +++ b/seatd/client.c @@ -398,7 +398,7 @@ static int client_handle_opcode(struct client *client, uint16_t opcode, size_t s return res; } -int client_disable_seat(struct client *client) { +int client_send_disable_seat(struct client *client) { struct proto_header header = { .opcode = SERVER_DISABLE_SEAT, .size = 0, @@ -411,7 +411,7 @@ int client_disable_seat(struct client *client) { return 0; } -int client_enable_seat(struct client *client) { +int client_send_enable_seat(struct client *client) { struct proto_header header = { .opcode = SERVER_ENABLE_SEAT, .size = 0, @@ -473,7 +473,7 @@ fail: return -1; } -int client_get_session(struct client *client) { +int client_get_session(const struct client *client) { if (client->seat == NULL || client->seat->active_client != client) { return -1; } diff --git a/seatd/seat.c b/seatd/seat.c index bbbfed7..676cc4a 100644 --- a/seatd/seat.c +++ b/seatd/seat.c @@ -357,6 +357,8 @@ int seat_open_client(struct seat *seat, struct client *client) { return -1; } + assert(seat->curttyfd == -1); + if (seat->vt_bound) { int ttyfd = terminal_open(client->seat_vt); if (ttyfd == -1) { @@ -380,7 +382,7 @@ int seat_open_client(struct seat *seat, struct client *client) { log_debugf("activated %zd devices", client->devices.length); seat->active_client = client; - if (client_enable_seat(client) == -1) { + if (client_send_enable_seat(client) == -1) { seat_remove_client(client); return -1; } @@ -441,7 +443,7 @@ static int seat_disable_client(struct client *client) { log_debugf("deactivated %zd devices", client->devices.length); client->pending_disable = true; - if (client_disable_seat(seat->active_client) == -1) { + if (client_send_disable_seat(seat->active_client) == -1) { seat_remove_client(client); return -1; } |