mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
11 lines
166 B
C#
11 lines
166 B
C#
namespace BililiveRecorder.Core.Config
|
|
{
|
|
public enum AllowedAddressFamily
|
|
{
|
|
System = -1,
|
|
Any = 0,
|
|
Ipv4 = 1,
|
|
Ipv6 = 2,
|
|
}
|
|
}
|