summaryrefslogtreecommitdiffstats
path: root/src/socket-client.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/socket-client.h')
-rw-r--r--src/socket-client.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/socket-client.h b/src/socket-client.h
index 4de01e34..76126aee 100644
--- a/src/socket-client.h
+++ b/src/socket-client.h
@@ -5,13 +5,13 @@
#include "mainloop-api.h"
#include "iochannel.h"
-struct socket_client;
+struct pa_socket_client;
-struct socket_client* socket_client_new_ipv4(struct pa_mainloop_api *m, uint32_t address, uint16_t port);
-struct socket_client* socket_client_new_unix(struct pa_mainloop_api *m, const char *filename);
+struct pa_socket_client* pa_socket_client_new_ipv4(struct pa_mainloop_api *m, uint32_t address, uint16_t port);
+struct pa_socket_client* pa_socket_client_new_unix(struct pa_mainloop_api *m, const char *filename);
-void socket_client_free(struct socket_client *c);
+void pa_socket_client_free(struct pa_socket_client *c);
-void socket_client_set_callback(struct socket_client *c, void (*on_connection)(struct socket_client *c, struct iochannel*io, void *userdata), void *userdata);
+void pa_socket_client_set_callback(struct pa_socket_client *c, void (*on_connection)(struct pa_socket_client *c, struct pa_iochannel*io, void *userdata), void *userdata);
#endif