X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Ffile.h;h=19d51c01a9aa52f375f28cd48bd396b77d84a123;hb=c2310ade7b550da9033963103ff1e318f34e1556;hp=40701720a38f89ec1195240996c950abb7217ddc;hpb=1e19e50e8d3a1822bc82e81409748f173079ccff;p=openvswitch diff --git a/ovsdb/file.h b/ovsdb/file.h index 40701720..19d51c01 100644 --- a/ovsdb/file.h +++ b/ovsdb/file.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010 Nicira Networks +/* Copyright (c) 2009, 2010, 2011 Nicira Networks * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,10 +21,11 @@ #include "log.h" struct ovsdb; +struct ovsdb_file; struct ovsdb_schema; struct ovsdb_error *ovsdb_file_open(const char *file_name, bool read_only, - struct ovsdb **) + struct ovsdb **, struct ovsdb_file **) WARN_UNUSED_RESULT; struct ovsdb_error *ovsdb_file_open_as_schema(const char *file_name, @@ -37,4 +38,10 @@ struct ovsdb_error *ovsdb_file_save_copy(const char *file_name, int locking, const struct ovsdb *) WARN_UNUSED_RESULT; +struct ovsdb_error *ovsdb_file_compact(struct ovsdb_file *); + +struct ovsdb_error *ovsdb_file_read_schema(const char *file_name, + struct ovsdb_schema **) + WARN_UNUSED_RESULT; + #endif /* ovsdb/file.h */