]> git.proxmox.com Git - mirror_ovs.git/blobdiff - lib/unixctl.c
list: Rename struct list to struct ovs_list
[mirror_ovs.git] / lib / unixctl.c
index 5749293baa3c3e0b37f9d3e15ec38dac7a73b528..9fb2e85b6c0abfba3ac7eb40c599172a7589497f 100644 (file)
@@ -44,7 +44,7 @@ struct unixctl_command {
 };
 
 struct unixctl_conn {
-    struct list node;
+    struct ovs_list node;
     struct jsonrpc *rpc;
 
     /* Only one request can be in progress at a time.  While the request is
@@ -55,7 +55,7 @@ struct unixctl_conn {
 /* Server for control connection. */
 struct unixctl_server {
     struct pstream *listener;
-    struct list conns;
+    struct ovs_list conns;
 };
 
 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 5);