mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 14:04:34 +08:00
16 lines
318 B
C#
16 lines
318 B
C#
using System;
|
|
|
|
namespace CPF.Mac.CoreFoundation
|
|
{
|
|
[Flags]
|
|
public enum CFSocketFlags
|
|
{
|
|
AutomaticallyReenableReadCallBack = 0x1,
|
|
AutomaticallyReenableAcceptCallBack = 0x2,
|
|
AutomaticallyReenableDataCallBack = 0x3,
|
|
AutomaticallyReenableWriteCallBack = 0x8,
|
|
LeaveErrors = 0x40,
|
|
CloseOnInvalidate = 0x80
|
|
}
|
|
}
|