aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs
blob: 80ea2c9d7ceaba3e6fac9c9a91b0cde4c5bdbb46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;
    }
}