]> git.sur5r.net Git - i3/i3/blob - libi3/ipc_connect.c
add libi3/ipc_connect, use it in i3-config-wizard, i3-input, i3bar
[i3/i3] / libi3 / ipc_connect.c
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  *
6  * © 2009-2011 Michael Stapelberg and contributors
7  *
8  * See file LICENSE for license information.
9  *
10  */
11 #include <sys/types.h>
12 #include <sys/socket.h>
13 #include <sys/un.h>
14 #include <string.h>
15 #include <err.h>
16 #include <stdlib.h>
17
18 /*
19  * Connects to the i3 IPC socket and returns the file descriptor for the
20  * socket. die()s if anything goes wrong.
21  *
22  */
23 int ipc_connect(const char *socket_path) {
24     int sockfd = socket(AF_LOCAL, SOCK_STREAM, 0);
25     if (sockfd == -1)
26         err(EXIT_FAILURE, "Could not create socket");
27
28     struct sockaddr_un addr;
29     memset(&addr, 0, sizeof(struct sockaddr_un));
30     addr.sun_family = AF_LOCAL;
31     strncpy(addr.sun_path, socket_path, sizeof(addr.sun_path) - 1);
32     if (connect(sockfd, (const struct sockaddr*)&addr, sizeof(struct sockaddr_un)) < 0)
33         err(EXIT_FAILURE, "Could not connect to i3");
34
35     return sockfd;
36 }