From d838e577300ddd2878ff9777d7588c2f54af2c07 Mon Sep 17 00:00:00 2001 From: Ankur Sharma Date: Fri, 22 Aug 2014 10:00:13 -0700 Subject: datapath-windows: Using windows kernel netlink parsing APIs. In this patch we incorporate the usage of netlink message and the parsing APIs that were added in previous commit. Signed-off-by: Ankur Sharma Reported-at: https://github.com/openvswitch/ovs-issues/issues/18 Acked-by: Nithin Raju Signed-off-by: Ben Pfaff --- datapath-windows/ovsext/Datapath.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'datapath-windows/ovsext/Datapath.h') diff --git a/datapath-windows/ovsext/Datapath.h b/datapath-windows/ovsext/Datapath.h index 2bea0fd2c..6d8a6db4f 100644 --- a/datapath-windows/ovsext/Datapath.h +++ b/datapath-windows/ovsext/Datapath.h @@ -71,8 +71,8 @@ NTSTATUS OvsCompleteIrpRequest(PIRP irp, ULONG_PTR infoPtr, NTSTATUS status); * Structure of any message passed between userspace and kernel. */ typedef struct _OVS_MESSAGE { - struct nlmsghdr nlMsg; - struct genlmsghdr genlMsg; + NL_MSG_HDR nlMsg; + GENL_MSG_HDR genlMsg; struct ovs_header ovsHdr; /* Variable length nl_attrs follow. */ } OVS_MESSAGE, *POVS_MESSAGE; -- cgit v1.2.1