mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@54 fefdeb5f-60dc-0310-8127-8f9354f1896f
26 lines
606 B
C
26 lines
606 B
C
#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_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);
|
|
|
|
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
|