ovsdb: Fix bug in JSON-RPC server.
[openvswitch] / lib / dpif.h
index aa4c1a4b71179f5fd2b8d972a80eb6869e92cc42..216c0996931484cbb16013f5e41f3342ea9c183b 100644 (file)
 
 struct dpif;
 struct ofpbuf;
+struct svec;
 
 void dp_run(void);
 void dp_wait(void);
+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 *);
 
 const char *dpif_name(const struct dpif *);
+int dpif_get_all_names(const struct dpif *, struct svec *);
 
 int dpif_delete(struct dpif *);