ready for command handling
This commit is contained in:
parent
80c1e9c1f9
commit
085b27f0b8
1 changed files with 16 additions and 7 deletions
|
@ -66,8 +66,10 @@ ipc_connection(int fd, uint32_t mask, void *UNUSED(data))
|
|||
return 0;
|
||||
}
|
||||
|
||||
int c;
|
||||
while ((c = getc(client_file)) != '\0') {
|
||||
bool is_reading = true;
|
||||
while (is_reading) {
|
||||
int c = getc(client_file);
|
||||
|
||||
if (msg_len >= buffer_size) {
|
||||
buffer_size *= 2;
|
||||
char *tmp = realloc(msg, buffer_size);
|
||||
|
@ -80,12 +82,19 @@ ipc_connection(int fd, uint32_t mask, void *UNUSED(data))
|
|||
msg = tmp;
|
||||
}
|
||||
|
||||
switch (c) {
|
||||
case '\0':
|
||||
is_reading = false;
|
||||
// FALLTHROUGH
|
||||
case '\n':
|
||||
msg[msg_len] = '\0';
|
||||
msg_len = 0;
|
||||
// TODO: handle command
|
||||
break;
|
||||
default:
|
||||
msg[msg_len++] = c;
|
||||
}
|
||||
|
||||
msg[msg_len] = '\0';
|
||||
|
||||
// TODO: handle properly
|
||||
}
|
||||
|
||||
fclose(client_file);
|
||||
free(msg);
|
||||
|
|
Loading…
Reference in a new issue