aboutsummaryrefslogtreecommitdiff
path: root/lib/ovsdb-parser.h
AgeCommit message (Collapse)Author
2012-05-02Global replace of Nicira Networks.Raju Subramanian
Replaced all instances of Nicira Networks(, Inc) to Nicira, Inc. Feature #10593 Signed-off-by: Raju Subramanian <rsubramanian@nicira.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
2011-03-31ovsdb-parser: Use sset instead of svec for detecting unused members.Ben Pfaff
Should be slightly cheaper than sorting a list (O(n) vs. O(n lg n)).
2010-02-25ovsdb: Add support for "enum" constraints.Ben Pfaff
Some of the uses for the formerly supported regular expression constraints were simply to limit values to those in a set of allowed values. This commit adds support for that kind of simple enumeration constraint.
2010-02-08ovsdb: Add simple constraints.Ben Pfaff
2009-11-19ovsdb: Require database, table, column names to be valid identifiers.Ben Pfaff
Database, table, and column names have always been required by the OVSDB specification to be identifiers (e.g. valid C identifiers), but this has never been enforced. This commit adds enforcement and fixes one instance of an invalid column name in the vswitch schema.
2009-11-16ovsdb-parser: Fix indentation.Ben Pfaff
2009-11-04Initial implementation of OVSDB.Ben Pfaff