diff options
Diffstat (limited to 'utils.c')
-rw-r--r-- | utils.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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); |