Client and server socket flags, specific to the
ProtocolHead.
Namespace:
Demo3D.Net
Assembly:
Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax[FlagsAttribute]
public enum SocketFlags
Members|
| Member name | Value | Description |
|---|
| Persistent | 1 |
Connection is persistent.
|
| Shared | 2 |
Client or service only. Share connections to the peer.
|
| Private | 4 |
Client only. This connection is private. Overrides Shared
and also marks the connection as private from the rest of Demo3D.
|
| Exclusive | 8 |
Client only. There can be only one Connection to the peer.
|
| NoCloseConnections | 16 |
Server only. True to keep client connections open when the server is closed.
See also CloseClients.
|
| NoLogConnections | 32 |
Server only. True to supress logging connections.
|
| NoLogDisconnections | 64 |
Server only. True to supress logging disconnections.
|
| SocketFlags | 255 |
All SocketFlags.
|
See Also