summaryrefslogtreecommitdiffstats
path: root/src/util.h
blob: ad9916e7179f2a4e97d78f0c8c96a9606f5c3b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef fooutilhfoo
#define fooutilhfoo

#include <sys/types.h>

void pa_make_nonblock_fd(int fd);

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);

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);

int pa_unix_socket_is_stale(const char *fn);
int pa_unix_socket_remove_stale(const char *fn);

void pa_check_for_sigpipe(void);

#endif