libustcomm: add buffering mechanism to receive function
[ust.git] / libustcomm / ustcomm.h
index 250883839d6187ca7976bb97ffb30cd95b4480ea..a554678c999c9284e84740ac72a35d35900fd8eb 100644 (file)
 struct ustcomm_connection {
        struct list_head list;
        int fd;
+       /* Data that has not yet been consumed: */
+       char *recv_buf;
+       int recv_buf_size;
+       int recv_buf_alloc;
 };
 
 /* ustcomm_server must be shallow-copyable */
This page took 0.024578 seconds and 4 git commands to generate.