diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-10-12 04:02:55 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-10-12 04:04:06 +0200 |
commit | 2759c311faeab339e52fcecaf52cd04885a5a54c (patch) | |
tree | 5900eeb9c80336086258476add7c255a8e8d75ba /kike.c | |
parent | 529a46ad415ad42d6e4a1ac1f85dd72a1993398c (diff) | |
download | xK-2759c311faeab339e52fcecaf52cd04885a5a54c.tar.gz xK-2759c311faeab339e52fcecaf52cd04885a5a54c.tar.xz xK-2759c311faeab339e52fcecaf52cd04885a5a54c.zip |
kike: use read/write rather than recv/send
read/write support non-sockets, otherwise they're the same here.
This is in preparation for fuzzing.
Diffstat (limited to 'kike.c')
-rw-r--r-- | kike.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3061,8 +3061,8 @@ irc_try_read (struct client *c) while (true) { str_reserve (buf, 512); - n_read = recv (c->socket_fd, buf->str + buf->len, - buf->alloc - buf->len - 1 /* null byte */, 0); + n_read = read (c->socket_fd, buf->str + buf->len, + buf->alloc - buf->len - 1 /* null byte */); if (n_read > 0) { @@ -3137,7 +3137,7 @@ irc_try_write (struct client *c) while (buf->len) { - n_written = send (c->socket_fd, buf->str, buf->len, 0); + n_written = write (c->socket_fd, buf->str, buf->len); if (n_written >= 0) { str_remove_slice (buf, 0, n_written); |