summaryrefslogtreecommitdiff
path: root/implementation/service_discovery/include/request.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/service_discovery/include/request.hpp')
-rw-r--r--implementation/service_discovery/include/request.hpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/implementation/service_discovery/include/request.hpp b/implementation/service_discovery/include/request.hpp
index 9e62deb..99fe507 100644
--- a/implementation/service_discovery/include/request.hpp
+++ b/implementation/service_discovery/include/request.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2015 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// Copyright (C) 2014-2016 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
@@ -29,10 +29,15 @@ public:
ttl_t get_ttl() const;
void set_ttl(ttl_t _ttl);
+ uint8_t get_sent_counter() const;
+ void set_sent_counter(uint8_t _sent_counter);
+
private:
major_version_t major_;
minor_version_t minor_;
ttl_t ttl_;
+
+ uint8_t sent_counter_;
};
} // namespace sd