summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h
index ad9916e7..dba89ee8 100644
--- a/src/util.h
+++ b/src/util.h
@@ -9,8 +9,11 @@ void pa_peer_to_string(char *c, size_t l, int fd);
int pa_make_secure_dir(const char* dir);
-int pa_make_socket_low_delay(int fd);
-int pa_make_tcp_socket_low_delay(int fd);
+int pa_socket_low_delay(int fd);
+int pa_socket_tcp_low_delay(int fd);
+
+int pa_socket_set_sndbuf(int fd, size_t l);
+int pa_socket_set_rcvbuf(int fd, size_t l);
ssize_t pa_loop_read(int fd, void*data, size_t size);
ssize_t pa_loop_write(int fd, const void*data, size_t size);