X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ovsdb%2Fserver.h;h=047cbb7e303293a11c5c961a87a21299aab0db48;hb=6d308b28c023e864925b1a6775b3b91d215e89bf;hp=e0738500f7e14c6cc3b2e9fdec3fe76eb8e7f7e9;hpb=e0edde6fee279cdbbf3c179f5f50adaf0c7c7f1e;p=sliver-openvswitch.git diff --git a/ovsdb/server.h b/ovsdb/server.h index e0738500f..047cbb7e3 100644 --- a/ovsdb/server.h +++ b/ovsdb/server.h @@ -18,17 +18,21 @@ #include "hmap.h" #include "list.h" +#include "shash.h" + +struct ovsdb; +struct ovsdb_server; /* Abstract representation of an OVSDB client connection, not tied to any * particular network protocol. Protocol implementations * (e.g. jsonrpc-server.c) embed this in a larger data structure. */ struct ovsdb_session { - struct ovsdb *db; + struct ovsdb_server *server; struct list completions; /* Completed triggers. */ struct hmap waiters; /* "ovsdb_lock_waiter *"s by lock name. */ }; -void ovsdb_session_init(struct ovsdb_session *, struct ovsdb *); +void ovsdb_session_init(struct ovsdb_session *, struct ovsdb_server *); void ovsdb_session_destroy(struct ovsdb_session *); struct ovsdb_lock_waiter *ovsdb_session_get_lock_waiter( @@ -73,11 +77,13 @@ bool ovsdb_lock_waiter_is_owner(const struct ovsdb_lock_waiter *); * network protocol. Protocol implementations (e.g. jsonrpc-server.c) embed * this in a larger data structure. */ struct ovsdb_server { - struct ovsdb *db; + struct shash dbs; /* Maps from a db name to a "struct ovsdb *". */ struct hmap locks; /* Contains "struct ovsdb_lock"s indexed by name. */ }; -void ovsdb_server_init(struct ovsdb_server *, struct ovsdb *); +void ovsdb_server_init(struct ovsdb_server *); +bool ovsdb_server_add_db(struct ovsdb_server *, struct ovsdb *); +bool ovsdb_server_remove_db(struct ovsdb_server *, struct ovsdb *); void ovsdb_server_destroy(struct ovsdb_server *); struct ovsdb_lock_waiter *ovsdb_server_lock(struct ovsdb_server *,