summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/ovsext.vcxproj
diff options
context:
space:
mode:
authorAnkur Sharma <ankursharma@vmware.com>2014-09-03 16:32:55 -0700
committerBen Pfaff <blp@nicira.com>2014-09-04 09:13:48 -0700
commitb52641ddf5b020c9eb5e8b6e46aaa0175b0fb614 (patch)
tree75f437e0a6de0b842438ee2887e75c92d48db87b /datapath-windows/ovsext/ovsext.vcxproj
parenta1fdee136b278e575d84aeeac06374a44a530300 (diff)
downloadopenvswitch-b52641ddf5b020c9eb5e8b6e46aaa0175b0fb614.tar.gz
datapath-windows: Move netlink files to a new directory.
In this change we have created a new directory named Netlink inside datapath-windows/ovsext/. This directory will be used to keep all the netlink related files. The reason we have created new directory is that for 'put' related APIs we will be adding netlink buffer mgmt files as well. These files will take the count of netlink related files to 5. Hence we decided to club the netlink files in a single directory. Signed-off-by: Ankur Sharma <ankursharma@vmware.com> Tested-by: Ankur Sharma <ankursharma@vmware.com> Reported-at: https://github.com/openvswitch/ovs-issues/issues/37 Acked-by: Eitan Eliahu <eliahue@vmware.com> Acked-by: Alin Gabriel Serdean <aserdean at cloudbasesolutions.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to 'datapath-windows/ovsext/ovsext.vcxproj')
-rw-r--r--datapath-windows/ovsext/ovsext.vcxproj8
1 files changed, 4 insertions, 4 deletions
diff --git a/datapath-windows/ovsext/ovsext.vcxproj b/datapath-windows/ovsext/ovsext.vcxproj
index 82ab908ee..a5464d440 100644
--- a/datapath-windows/ovsext/ovsext.vcxproj
+++ b/datapath-windows/ovsext/ovsext.vcxproj
@@ -82,8 +82,8 @@
<ClInclude Include="Ioctl.h" />
<ClInclude Include="IpHelper.h" />
<ClInclude Include="Jhash.h" />
- <ClInclude Include="Netlink.h" />
- <ClInclude Include="NetlinkProto.h" />
+ <ClInclude Include="Netlink/Netlink.h" />
+ <ClInclude Include="Netlink/NetlinkProto.h" />
<ClInclude Include="NetProto.h" />
<ClInclude Include="Oid.h" />
<ClInclude Include="PacketIO.h" />
@@ -138,7 +138,7 @@
<ClCompile Include="Ioctl.c" />
<ClCompile Include="IpHelper.c" />
<ClCompile Include="Jhash.c" />
- <ClCompile Include="Netlink.c" />
+ <ClCompile Include="Netlink/Netlink.c" />
<ClCompile Include="Datapath.c" />
<ClCompile Include="Oid.c" />
<ClCompile Include="PacketIO.c" />
@@ -168,4 +168,4 @@
<None Exclude="@(None)" Include="*.def;*.bat;*.hpj;*.asmx" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-</Project> \ No newline at end of file
+</Project>