X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=libustcomm%2Fustcomm.h;h=d16aec79fc9aa4b79cba8f2f72383665e58bd5c3;hb=304f67a5f2d2eaaa7407c09b2ac7d6e049bccf1f;hp=0ec04fc6e5edfd83458e021ecf835c0b5f429eaa;hpb=28c1bb4003ca120888a1d61d5ec71eac426ae490;p=ust.git diff --git a/libustcomm/ustcomm.h b/libustcomm/ustcomm.h index 0ec04fc..d16aec7 100644 --- a/libustcomm/ustcomm.h +++ b/libustcomm/ustcomm.h @@ -25,6 +25,7 @@ #include #define SOCK_DIR "/tmp/ust-app-socks" +#define USER_SOCK_DIR "/tmp/ust-socks-" struct ustcomm_sock { struct cds_list_head list; @@ -118,7 +119,7 @@ struct ustcomm_notify_buf_mapped { }; /* Ensure directory existence, usefull for unix sockets */ -extern int ensure_dir_exists(const char *dir); +extern int ensure_dir_exists(const char *dir, mode_t mode); /* Create and delete sockets */ extern struct ustcomm_sock * ustcomm_init_sock(int fd, int epoll_fd, @@ -156,6 +157,9 @@ extern int ustcomm_req(int sock, char *res_data); extern int ustcomm_request_consumer(pid_t pid, const char *channel); + +/* Returns the current users socket directory, must be freed */ +extern char *ustcomm_user_sock_dir(void); extern int ustcomm_connect_app(pid_t pid, int *app_fd); extern int ustcomm_connect_path(const char *path, int *connection_fd);