summaryrefslogtreecommitdiffstats
path: root/src/pulsecore/socket-util.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-09-19 00:12:01 +0000
committerLennart Poettering <lennart@poettering.net>2007-09-19 00:12:01 +0000
commit75f799a3d885a5af42c5cb3af49da1299b8425cc (patch)
tree2121e5bf9f415b113b2df6527281e388958d89f1 /src/pulsecore/socket-util.h
parent0fcad977828665e46849cc4efe758ebc42450a66 (diff)
make O_CLOEXEC, O_NONBLOCK and socket low latency fd ops more uniform: always return void, name them similarly, only pass a single fd
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1867 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/pulsecore/socket-util.h')
-rw-r--r--src/pulsecore/socket-util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pulsecore/socket-util.h b/src/pulsecore/socket-util.h
index abe9ce10..a0344c68 100644
--- a/src/pulsecore/socket-util.h
+++ b/src/pulsecore/socket-util.h
@@ -29,9 +29,9 @@
void pa_socket_peer_to_string(int fd, char *c, size_t l);
-int pa_socket_low_delay(int fd);
-int pa_socket_tcp_low_delay(int fd);
-int pa_socket_udp_low_delay(int fd);
+void pa_make_socket_low_delay(int fd);
+void pa_make_tcp_socket_low_delay(int fd);
+void pa_make_udp_socket_low_delay(int fd);
int pa_socket_set_sndbuf(int fd, size_t l);
int pa_socket_set_rcvbuf(int fd, size_t l);