mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
18 lines
398 B
C
18 lines
398 B
C
|
|
#ifndef foosocketutilhfoo
|
||
|
|
#define foosocketutilhfoo
|
||
|
|
|
||
|
|
#include <sys/types.h>
|
||
|
|
|
||
|
|
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_set_sndbuf(int fd, size_t l);
|
||
|
|
int pa_socket_set_rcvbuf(int fd, size_t l);
|
||
|
|
|
||
|
|
int pa_unix_socket_is_stale(const char *fn);
|
||
|
|
int pa_unix_socket_remove_stale(const char *fn);
|
||
|
|
|
||
|
|
#endif
|