summaryrefslogtreecommitdiff
path: root/utils.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2009-11-04 04:37:05 (GMT)
committerChristian Pointner <equinox@helsinki.at>2009-11-04 04:37:05 (GMT)
commit7882d05127816e6885268182a3769bc7a091de94 (patch)
tree436160f1e3f2980edc092759e56c617492dae1ba /utils.h
parent14e460a9bcaadaa2dd206a5c701814cd5e1d4648 (diff)
alias table for switch commands
Diffstat (limited to 'utils.h')
-rw-r--r--utils.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/utils.h b/utils.h
index 5e4da89..e34fc88 100644
--- a/utils.h
+++ b/utils.h
@@ -22,9 +22,11 @@
#ifndef _UTILS_H_
#define _UTILS_H_
+#include "options.h"
+
int init_command_socket(const char* path);
int send_string(int fd, const char* string);
-int nonblock_recvline(read_buffer_t* buffer, int fd, cmd_t** cmd_q, client_t* client_lst);
+int nonblock_recvline(read_buffer_t* buffer, int fd, cmd_t** cmd_q, client_t* client_lst, options_t* opt);
int setup_tty(int fd);
#endif