From d0574c74df71ee16df5ea3dac374757187f250a8 Mon Sep 17 00:00:00 2001 From: Alin Serdean Date: Tue, 20 Jun 2017 14:59:36 +0000 Subject: [PATCH] datapath-windows: add open flow defines to Types.h Commit https://github.com/openvswitch/ovs/commit/81765c00a13882acaaf652df23d7fa76fc3ad743 introduced openflow types to the include interface. The Windows datapath needs to be aware of the new types included in the common interface. Fixes broken build on Windows. Signed-off-by: Alin Gabriel Serdean Acked-by: Sairam Venugopal Signed-off-by: Gurucharan Shetty --- datapath-windows/ovsext/Types.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/datapath-windows/ovsext/Types.h b/datapath-windows/ovsext/Types.h index 022c65bd9..4da335a11 100644 --- a/datapath-windows/ovsext/Types.h +++ b/datapath-windows/ovsext/Types.h @@ -42,6 +42,10 @@ typedef UINT16 BE16; typedef UINT32 BE32; typedef UINT64 BE64; +typedef uint32_t ofp_port_t; +typedef uint32_t odp_port_t; +typedef uint32_t ofp11_port_t; + #define ETH_ALEN 6 #define SIZE_MAX MAXUINT32 -- 2.39.2