Browse Source

Server: Changed some variables from const to static readonly

Tal Aloni 6 years ago
parent
commit
7aa5cc1283
2 changed files with 8 additions and 8 deletions
  1. 3 3
      SMBLibrary/Server/NameServer.cs
  2. 5 5
      SMBLibrary/Server/SMBServer.cs

+ 3 - 3
SMBLibrary/Server/NameServer.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2014-2018 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  * 
  * You can redistribute this program and/or modify it under the terms of
  * the GNU Lesser Public License as published by the Free Software Foundation,
@@ -20,8 +20,8 @@ namespace SMBLibrary.Server
     /// </summary>
     public class NameServer
     {
-        public const int NetBiosNameServicePort = 137;
-        public const string WorkgroupName = "WORKGROUP";
+        public static readonly int NetBiosNameServicePort = 137;
+        public static readonly string WorkgroupName = "WORKGROUP";
 
         private IPAddress m_serverAddress;
         private IPAddress m_broadcastAddress;

+ 5 - 5
SMBLibrary/Server/SMBServer.cs

@@ -1,4 +1,4 @@
-/* Copyright (C) 2014-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
+/* Copyright (C) 2014-2018 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  * 
  * You can redistribute this program and/or modify it under the terms of
  * the GNU Lesser Public License as published by the Free Software Foundation,
@@ -20,11 +20,11 @@ namespace SMBLibrary.Server
 {
     public partial class SMBServer
     {
-        public const int NetBiosOverTCPPort = 139;
-        public const int DirectTCPPort = 445;
+        public static readonly int NetBiosOverTCPPort = 139;
+        public static readonly int DirectTCPPort = 445;
         public const string NTLanManagerDialect = "NT LM 0.12";
-        public const bool EnableExtendedSecurity = true;
-        private const int InactivityMonitoringInterval = 30000; // Check every 30 seconds
+        public static readonly bool EnableExtendedSecurity = true;
+        private static readonly int InactivityMonitoringInterval = 30000; // Check every 30 seconds
 
         private SMBShareCollection m_shares; // e.g. Shared folders
         private GSSProvider m_securityProvider;