summaryrefslogtreecommitdiff
path: root/lib/uuid.h
Commit message (Collapse)AuthorAgeFilesLines
* Break uuid.h into private and public partsBen Warren2016-04-141-18/+1
| | | | | | | | Public (struct definitions and some prototypes) go in include/openvswitch Signed-off-by: Ben Warren <ben@skyportsystems.com> Signed-off-by: Ben Pfaff <blp@ovn.org>
* dpif: Always generate RFC4122 UUIDs for UFID.Joe Stringer2015-06-091-0/+1
| | | | | | | | | | | This patch sacrifices a few bits of hash quality from the 128-bit unique flow identifiers to make the UFIDs RFC4122-conformant as per the version 4 (random) UUID spec. Given that the 128-bit space is already quite large, this should not affect the spread of UFIDs in any meaningful way for hashing. Signed-off-by: Joe Stringer <joestringer@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
* Global replace of Nicira Networks.Raju Subramanian2012-05-021-1/+1
| | | | | | | | 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>
* uuid: Correct name of header file in comment.Justin Pettit2011-01-111-1/+1
|
* uuid: New function uuid_from_string_prefix().Ben Pfaff2010-02-151-0/+1
| | | | For use in an upcoming commit.
* ovsdb: Save some space in the log for newly inserted records.Ben Pfaff2010-01-111-1/+2
| | | | | | | | | | | | When a new record is inserted into a database, ovsdb logs the values of all of the fields in the record. However, often new records have many columns that contain default values. There is no need to log those values, so this commit causes them to be omitted. As a side effect, this also makes "ovsdb-tool show-log --more --more" output easier to read, because record insertions print less noise. (Adding --more --more to this command makes it print changes to database records. The --more option will be introduced in an upcoming commit.)
* Implement RFC 4122-compliant UUIDs.Ben Pfaff2009-11-041-0/+80
This UUID library will be used by the upcoming configuration database.