summaryrefslogtreecommitdiff
path: root/utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'utils.c')
-rw-r--r--utils.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/utils.c b/utils.c
index 6e786cf..f2ca2a7 100644
--- a/utils.c
+++ b/utils.c
@@ -26,8 +26,6 @@
#include <unistd.h>
#include <errno.h>
-#include "command_queue.h"
-#include "client_list.h"
#include "log.h"
#include "utils.h"
@@ -66,6 +64,11 @@ int init_command_socket(const char* path)
return fd;
}
+int connect_command_socket(const char* path)
+{
+ return -1;
+}
+
int send_string(int fd, const char* string)
{
int len = strlen(string);