mirror of
https://github.com/vale981/ray
synced 2025-03-06 18:41:40 -05:00
11 lines
279 B
C
11 lines
279 B
C
![]() |
#ifndef SOCKETS_H
|
||
|
#define SOCKETS_H
|
||
|
|
||
|
/* Helper functions for socket communication. */
|
||
|
int bind_ipc_sock(const char* socket_pathname);
|
||
|
int connect_ipc_sock(const char* socket_pathname);
|
||
|
void send_ipc_sock(int socket_fd, char* message);
|
||
|
char* recv_ipc_sock(int socket_fd);
|
||
|
|
||
|
#endif
|