From 99331c0a3364e1c71b7d8ae1359b593ec17fd11e Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 3 Dec 2009 16:20:30 -0800 Subject: [PATCH] vswitchd: Add "id" column to Interface table for use by NOX. This might end up being absorbed into a more general-purpose "foreign-keys" column. --- vswitchd/vswitch-idl.ovsidl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vswitchd/vswitch-idl.ovsidl b/vswitchd/vswitch-idl.ovsidl index e713d6fe..05906faa 100644 --- a/vswitchd/vswitch-idl.ovsidl +++ b/vswitchd/vswitch-idl.ovsidl @@ -100,7 +100,10 @@ "type": "integer"}, "mac": { "comment": "Ethernet address to set for this interface. If unset then the default MAC address is used. May not be supported on all interfaces. Exactly 12 hex digits in the form XX:XX:XX:XX:XX:XX.", - "type": {"key": "string", "min": 0, "max": 1}}}}, + "type": {"key": "string", "min": 0, "max": 1}}, + "id": { + "comment": "Foreign key for use by NOX. (This might end up being absorbed into a more general-purpose \"foreign-keys\" column.)", + "type": {"key": "uuid", "min": 0, "max": 1}}}}, "Mirror": { "comment": "A port mirror within a Bridge.", "columns": { -- 2.30.2