This repository has been archived by the owner. It is now read-only.
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upRecent commit uses a Socket constructor not available on mono (causes a crash) #526
Comments
This comment has been minimized.
This comment has been minimized.
alek-sys
commented
Aug 14, 2014
|
I've tried to fix it in #529 (but probably in pretty straightforward way) |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
borgdylan commentedAug 14, 2014
Looking at the line https://github.com/aspnet/KRuntime/blob/dev/src/Microsoft.Framework.Runtime/DefaultHost.cs#L171, a constructor not available on mono is being used triggering teh following exception:
The only overloads available on mono are:
public Socket (AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType)
public Socket (SocketInformation socketInformation)