ust: change communication socket for STREAM
[ust.git] / libustcomm / ustcomm.h
index 53ced5140c962d604fc50992350db50dda48ba6b..7d845920fe0d0b57dd438b24f1ef0d0a8827af2b 100644 (file)
@@ -4,16 +4,27 @@
 #include <sys/types.h>
 #include <sys/un.h>
 
+#include "kcompat.h"
+
+struct ustcomm_connection {
+       struct list_head list;
+       int fd;
+};
+
 struct ustcomm_app {
        /* the "server" socket for serving the external requests */
-       int fd;
+       int listen_fd;
        char *socketpath;
+
+       struct list_head connections;
 };
 
 struct ustcomm_ustd {
        /* the "server" socket for serving the external requests */
-       int fd;
+       int listen_fd;
        char *socketpath;
+
+       struct list_head connections;
 };
 
 struct ustcomm_source {
This page took 0.023189 seconds and 4 git commands to generate.