2017-07-09 10:12:50 +00:00
|
|
|
#ifndef SESSION_DIRECT_IPC
|
|
|
|
#define SESSION_DIRECT_IPC
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
int direct_ipc_open(int sock, const char *path);
|
2017-07-09 10:23:54 +00:00
|
|
|
void direct_ipc_setmaster(int sock, int fd);
|
|
|
|
void direct_ipc_dropmaster(int sock, int fd);
|
2017-07-09 10:12:50 +00:00
|
|
|
void direct_ipc_finish(int sock, pid_t pid);
|
2017-08-25 23:56:43 +00:00
|
|
|
int direct_ipc_init(pid_t *pid_out);
|
2017-07-09 10:12:50 +00:00
|
|
|
|
|
|
|
#endif
|