]> git.stg.codes - ssmd.git/blobdiff - include/settings.inl.h
Removed GTS string.
[ssmd.git] / include / settings.inl.h
index e67aab790e79269742fe622379c5a08194701080..dbc275cb852fcc7ee8854a07b3872b1819a5f775 100644 (file)
@@ -1,10 +1,10 @@
-#ifndef __GTS_SETTINGS_INL_H__
-#define __GTS_SETTINGS_INL_H__
+#ifndef __SSMD_SETTINGS_INL_H__
+#define __SSMD_SETTINGS_INL_H__
 
 #include <iostream>
 #include <sstream>
 
-namespace GTS {
+namespace SSMD {
 
 inline
 Settings::Settings()
@@ -18,7 +18,9 @@ Settings::Settings()
       _switchSyncInterval(180),
       _infoSyncInterval(60),
       _upProfileId(1),
-      _downProfileId(2)
+      _downProfileId(2),
+      _maxACLPerPDU(50),
+      _dataURL()
 {
 }
 
@@ -35,6 +37,7 @@ Settings::Settings(const Settings & rvalue)
       _infoSyncInterval(rvalue._infoSyncInterval),
       _upProfileId(rvalue._upProfileId),
       _downProfileId(rvalue._downProfileId),
+      _maxACLPerPDU(rvalue._maxACLPerPDU),
       _dataURL(rvalue._dataURL)
 {
 }
@@ -58,6 +61,7 @@ const Settings & Settings::operator=(const Settings & rvalue)
     _infoSyncInterval = rvalue._infoSyncInterval;
     _upProfileId = rvalue._upProfileId;
     _downProfileId = rvalue._downProfileId;
+    _maxACLPerPDU = rvalue._maxACLPerPDU;
     _dataURL = rvalue._dataURL;
     return *this;
 }