diff options
author | Christian Pointner <equinox@helsinki.at> | 2009-11-13 12:49:19 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2009-11-13 12:49:19 (GMT) |
commit | 8fce4645f96514daeea47e361c881b8ba8c11439 (patch) | |
tree | 634e3ab5965792b881aa402421dbfe406e9e2eb7 /utils.c | |
parent | 8b065cd5f0045b12a6ddb8c83d70c08258205ecc (diff) |
options parser for new serialclient
added serialclient to Makefile
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); |