This reverts commit 85dbb9559a
.
This commit is contained in:
parent
85dbb9559a
commit
3615a70cae
299 changed files with 12276 additions and 12268 deletions
|
@ -9,20 +9,20 @@
|
|||
Output = 4,
|
||||
Error = 8,
|
||||
Disconnected = 0x10,
|
||||
Invalid = 0x20
|
||||
Invalid = 0x20,
|
||||
}
|
||||
|
||||
public int SocketFd { get; }
|
||||
public BsdSocket Socket { get; }
|
||||
public EventTypeMask InputEvents { get; }
|
||||
public EventTypeMask OutputEvents { get; }
|
||||
public int SocketFd { get; private set; }
|
||||
public BsdSocket Socket { get; private set; }
|
||||
public EventTypeMask InputEvents { get; private set; }
|
||||
public EventTypeMask OutputEvents { get; private set; }
|
||||
|
||||
public PollEvent(int socketFd, BsdSocket socket, EventTypeMask inputEvents, EventTypeMask outputEvents)
|
||||
public PollEvent(int SocketFd, BsdSocket Socket, EventTypeMask InputEvents, EventTypeMask OutputEvents)
|
||||
{
|
||||
SocketFd = socketFd;
|
||||
Socket = socket;
|
||||
InputEvents = inputEvents;
|
||||
OutputEvents = outputEvents;
|
||||
this.SocketFd = SocketFd;
|
||||
this.Socket = Socket;
|
||||
this.InputEvents = InputEvents;
|
||||
this.OutputEvents = OutputEvents;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue