You've already forked linux-packaging-mono
Imported Upstream version 5.12.0.220
Former-commit-id: c477e03582759447177c6d4bf412cd2355aad476
This commit is contained in:
parent
8bd104cef2
commit
8fc30896db
@ -47,7 +47,7 @@ using System.Text;
|
||||
using System.Timers;
|
||||
using System.Net.NetworkInformation;
|
||||
|
||||
namespace System.Net.Sockets
|
||||
namespace System.Net.Sockets
|
||||
{
|
||||
public partial class Socket : IDisposable
|
||||
{
|
||||
@ -91,7 +91,14 @@ namespace System.Net.Sockets
|
||||
int m_IntCleanedUp;
|
||||
internal bool connect_in_progress;
|
||||
|
||||
#region Constructors
|
||||
#if MONO_WEB_DEBUG
|
||||
static int nextId;
|
||||
internal readonly int ID = ++nextId;
|
||||
#else
|
||||
internal readonly int ID;
|
||||
#endif
|
||||
|
||||
#region Constructors
|
||||
|
||||
|
||||
public Socket (SocketInformation socketInformation)
|
||||
|
Reference in New Issue
Block a user