]> git.stg.codes - ssmd.git/blobdiff - include/settings.inl.h
Add max_acl_per_pdu param
[ssmd.git] / include / settings.inl.h
index e67aab790e79269742fe622379c5a08194701080..1c771ced8dc42b2df16d6402d6f5f96f85d1dc8d 100644 (file)
@@ -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;
 }