Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Henry <ludovic@xamarin.com>2017-01-19 17:25:55 +0300
committerGitHub <noreply@github.com>2017-01-19 17:25:55 +0300
commite343ad0cfd404c92761cd6e0f683ccd46402897b (patch)
tree5988ab486ade557e3a7645f001bb26e1753550e0 /msvc/libmonoruntime.vcxproj
parent6220d1140479b2a313c59501ff958e967b5e7fb5 (diff)
[io-layer] Extract socket (#4241)
* [socket] Extract win32 and unix specific code from w32socket.c * [socket] Extract WSAGetLastError and WSASetLastError * [socket] Extract closesocket * [socket] Extract iocltsocket * [socket] Extract socket-wrappers.h functions * [socket] Extract w32handle operations * [socket] Extract WSAIoctl * [socket] Do not use mono_w32socket_ioctl for disconnect * [socket] Extract errno_to_WSA * [socket] Remove redundant mono_w32handle_get_type/mono_w32handle_lookup * [socket] Inline _wapi_* functions * [socket] Make disconnect not rely on mono_w32socket_ioctl * [socket] Remove unused parameters to mono_w32socket_transmit_file * [socket] Refactor calls to mono_w32socket_convert_error * [socket] Remove dead code
Diffstat (limited to 'msvc/libmonoruntime.vcxproj')
-rw-r--r--msvc/libmonoruntime.vcxproj8
1 files changed, 4 insertions, 4 deletions
diff --git a/msvc/libmonoruntime.vcxproj b/msvc/libmonoruntime.vcxproj
index f0e8db4e9a8..6c94d1ff21e 100644
--- a/msvc/libmonoruntime.vcxproj
+++ b/msvc/libmonoruntime.vcxproj
@@ -28,7 +28,7 @@
<ClCompile Include="..\mono\metadata\cominterop.c" />
<ClCompile Include="..\mono\metadata\console-win32.c" />
<ClCompile Include="..\mono\metadata\property-bag.c" />
- <ClCompile Include="..\mono\metadata\socket-io-windows.c" />
+ <ClCompile Include="..\mono\metadata\w32socket-win32.c" />
<ClCompile Include="..\mono\metadata\file-io-windows.c" />
<ClCompile Include="..\mono\metadata\icall-windows.c" />
<ClCompile Include="..\mono\metadata\marshal-windows.c" />
@@ -100,7 +100,7 @@
<ClCompile Include="..\mono\metadata\sgen-tarjan-bridge.c" />
<ClCompile Include="..\mono\metadata\sgen-toggleref.c" />
<ClCompile Include="..\mono\metadata\sgen-stw.c" />
- <ClCompile Include="..\mono\metadata\socket-io.c" />
+ <ClCompile Include="..\mono\metadata\w32socket.c" />
<ClCompile Include="..\mono\metadata\sre.c" />
<ClCompile Include="..\mono\metadata\sre-encode.c" />
<ClCompile Include="..\mono\metadata\sre-save.c" />
@@ -154,7 +154,7 @@
<ClInclude Include="..\mono\metadata\seq-points-data.h" />
<ClInclude Include="..\mono\metadata\sgen-bridge-internals.h" />
<ClInclude Include="..\mono\metadata\sgen-client-mono.h" />
- <ClInclude Include="..\mono\metadata\socket-io-windows-internals.h" />
+ <ClInclude Include="..\mono\metadata\w32socket-internals.h" />
<ClInclude Include="..\mono\metadata\threadpool-io.h" />
<ClInclude Include="..\mono\metadata\threadpool.h" />
<ClInclude Include="..\mono\metadata\threadpool-worker.h" />
@@ -199,7 +199,7 @@
<ClInclude Include="..\mono\metadata\security.h" />
<ClInclude Include="..\mono\metadata\sgen-bridge.h" />
<ClInclude Include="..\mono\metadata\sgen-toggleref.h" />
- <ClInclude Include="..\mono\metadata\socket-io.h" />
+ <ClInclude Include="..\mono\metadata\w32socket.h" />
<ClInclude Include="..\mono\metadata\sre-internals.h" />
<ClInclude Include="..\mono\metadata\string-icalls.h" />
<ClInclude Include="..\mono\metadata\sysmath.h" />