summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/util.h b/src/util.h
index 8e9a3796..b8759ad8 100644
--- a/src/util.h
+++ b/src/util.h
@@ -1,13 +1,15 @@
#ifndef fooutilhfoo
#define fooutilhfoo
-void make_nonblock_fd(int fd);
+#include <sys/types.h>
-void peer_to_string(char *c, size_t l, int fd);
+void pa_make_nonblock_fd(int fd);
-int make_secure_dir(const char* dir);
+void pa_peer_to_string(char *c, size_t l, int fd);
-int make_socket_low_delay(int fd);
-int make_tcp_socket_low_delay(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);
#endif