// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.ServiceModel.Channels
{
internal static class UnsafeNativeMethods
{
public const int ERROR_INVALID_HANDLE = 6;
public const int ERROR_NOT_ENOUGH_MEMORY = 8;
public const int ERROR_OUTOFMEMORY = 14;
public const int ERROR_NO_SYSTEM_RESOURCES = 1450;
public const int WSAEADDRNOTAVAIL = 10049;
public const int WSAENETDOWN = 10050;
public const int WSAENETUNREACH = 10051;
public const int WSAENETRESET = 10052;
public const int WSAECONNABORTED = 10053;
public const int WSAECONNRESET = 10054;
public const int WSAENOBUFS = 10055;
public const int WSAETIMEDOUT = 10060;
public const int WSAECONNREFUSED = 10061;
public const int WSAEHOSTDOWN = 10064;
public const int WSAEHOSTUNREACH = 10065;
}
}
|