added nonblock-readline function
[svn42.git] / door_daemon / client_list.h
index 4dd3c21..8bb14f9 100644 (file)
 #ifndef _CLIENT_LIST_H_
 #define _CLIENT_LIST_H_
 
+#include "datatypes.h"
+
 struct client_struct {
   int fd;
   int status_listener;
   struct client_struct* next;
+  read_buffer_t buffer;
 };
 typedef struct client_struct client_t;