]> git.stg.codes - ssmd.git/blobdiff - include/settings.h
Add max_acl_per_pdu param
[ssmd.git] / include / settings.h
index e061b96d8e641fabd44ba9a4a8021ebc2b3d0e54..e384a423ee584ae44c77965661253881fbd67ef6 100644 (file)
@@ -36,6 +36,8 @@ class Settings {
         unsigned upProfileId() const throw() { return _upProfileId; }
         unsigned downProfileId() const throw() { return _downProfileId; }
 
+        size_t maxACLPerPDU() const throw() { return _maxACLPerPDU; }
+
         const std::string & dataURL() const throw() { return _dataURL; }
 
         // Setters
@@ -54,6 +56,8 @@ class Settings {
         void setUpProfileId(unsigned value) throw() { _upProfileId = value; }
         void setDownProfileId(unsigned value) throw() { _downProfileId = value; }
 
+        void setMaxACLPerPDU(size_t value) throw() { _maxACLPerPDU = value; }
+
         void setDataURL(const std::string & value) throw() { _dataURL = value; }
 
     private:
@@ -72,6 +76,8 @@ class Settings {
         unsigned _upProfileId;
         unsigned _downProfileId;
 
+        size_t _maxACLPerPDU;
+
         std::string _dataURL;
 
         friend class SettingsParser;