aboutsummaryrefslogtreecommitdiffstats
path: root/include/ipc-client.h
blob: a4cfd87f6a7c0b33805b499329316aeb8dcdfc65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef _SWAY_IPC_CLIENT_H
#define _SWAY_IPC_CLIENT_H

#include "ipc.h"

/**
 * Gets the path to the IPC socket from sway.
 */
char *get_socketpath(void);
/**
 * Opens the sway socket.
 */
int ipc_open_socket(const char *socket_path);
/**
 * Issues a single IPC command and returns the buffer. len will be updated with
 * the length of the buffer returned from sway.
 */
char *ipc_single_command(int socketfd, uint32_t type, const char *payload, uint32_t *len);
/**
 * Receives a single IPC resposne and returns the buffer. len will be updated
 * with the length of the buffer returned from sway.
 */
char *ipc_recv_response(int socketfd, uint32_t *len);

#endif