aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs')
-rw-r--r--src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs b/src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs
new file mode 100644
index 00000000..80ea2c9d
--- /dev/null
+++ b/src/Ryujinx.HLE/HOS/Services/Ldn/LdnConst.cs
@@ -0,0 +1,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;
+ }
+}