diff options
-rw-r--r-- | libsbus.c | 4 | ||||
-rw-r--r-- | libsbus.h | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -60,12 +60,12 @@ libsbuf_prepare_message(const char *key, char *buf, size_t *remaining) } int -libsbus_receive(int fd, char *buf, union libsbus_packet *packet) +libsbus_receive(int fd, int flags, char *buf, union libsbus_packet *packet) { ssize_t r; char *p; - r = recv(fd, buf, LIBSBUS_BUFFER_SIZE, 0); + r = recv(fd, buf, LIBSBUS_BUFFER_SIZE, flags); if (r < 0) return -1; @@ -33,6 +33,6 @@ int libsbus_subscribe(int fd, const char *pattern, char *buf); int libsbus_unsubscribe(int fd, const char *pattern, char *buf); int libsbus_publish(int fd, const char *key, const char *msg, size_t n, char *buf); ssize_t libsbuf_prepare_message(const char *key, char *buf, size_t *remaining); -int libsbus_receive(int fd, char *buf, union libsbus_packet *packet); +int libsbus_receive(int fd, int flags, char *buf, union libsbus_packet *packet); #endif |