mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-01-31 12:11:32 -08:00
13 lines
390 B
C#
13 lines
390 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Ldn
|
||
|
{
|
||
|
static class LdnConst
|
||
|
{
|
||
|
public const int SsidLengthMax = 0x20;
|
||
|
public const int AdvertiseDataSizeMax = 0x180;
|
||
|
public const int UserNameBytesMax = 0x20;
|
||
|
public const int NodeCountMax = 8;
|
||
|
public const int StationCountMax = NodeCountMax - 1;
|
||
|
public const int PassphraseLengthMax = 0x40;
|
||
|
}
|
||
|
}
|