Before moving to dotnet dnx on OSx on Mono would load libuv.dll into the process and Kestrel would use DllImport with __Internal to import functions from the native libraries loaded into the Mono process. With the move to dotnet nothing is preloading libuv to the process so Kestrel must no longer use DllImports with __Internal but the regular ones. Mono seems to load native libraries from the app folder so, the user won't have to install libuv on their own since libuv.dylib is published with the app. |
||
|---|---|---|
| .. | ||
| Libuv.cs | ||
| PlatformApis.cs | ||
| SockAddr.cs | ||
| UvAsyncHandle.cs | ||
| UvConnectRequest.cs | ||
| UvException.cs | ||
| UvHandle.cs | ||
| UvLoopHandle.cs | ||
| UvMemory.cs | ||
| UvPipeHandle.cs | ||
| UvRequest.cs | ||
| UvShutdownReq.cs | ||
| UvStreamHandle.cs | ||
| UvTcpHandle.cs | ||
| UvWriteReq.cs | ||