X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Ftable.h;h=ff99cf17c34ba012a6a075d51758b6dee33949bd;hb=b932d88b16c8a48c332495ddd3f70ea97dc1abf1;hp=6e8a78596afc2e86074da12c9fed36fd2afc6cde;hpb=71c93bd4cc4d63be99cdc27ffee80c34f05bff75;p=openvswitch diff --git a/ovsdb/table.h b/ovsdb/table.h index 6e8a7859..ff99cf17 100644 --- a/ovsdb/table.h +++ b/ovsdb/table.h @@ -27,14 +27,14 @@ struct uuid; /* Schema for a database table. */ struct ovsdb_table_schema { char *name; - char *comment; bool mutable; struct shash columns; /* Contains "struct ovsdb_column *"s. */ }; struct ovsdb_table_schema *ovsdb_table_schema_create(const char *name, - const char *comment, bool mutable); +struct ovsdb_table_schema *ovsdb_table_schema_clone( + const struct ovsdb_table_schema *); void ovsdb_table_schema_destroy(struct ovsdb_table_schema *); struct ovsdb_error *ovsdb_table_schema_from_json(const struct json *,