ovs-brcompatd: Fix use of uninitialized svec.
[openvswitch] / lib / dpif.h
index d81cf631e4cb2abeb41a3e47d854d487e7e7ab5b..1e5412a4d481b336146b006dab49d9e2657598d4 100644 (file)
@@ -28,6 +28,7 @@
 #include <stdint.h>
 
 struct ofpbuf;
+struct svec;
 
 /* A datapath interface.  Opaque. */
 struct dpif {
@@ -35,6 +36,8 @@ struct dpif {
     int fd;
 };
 
+int dp_enumerate(struct svec *);
+
 int dpif_open(const char *name, struct dpif *);
 int dpif_create(const char *name, struct dpif *);
 void dpif_close(struct dpif *);