diff options
author | Mauro Sardara <msardara@cisco.com> | 2019-05-15 14:31:17 +0200 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2019-05-15 15:26:20 +0200 |
commit | 31f349f4c4457344efcff20ccadfed53042891b1 (patch) | |
tree | 3158a7216fc3ede9beb603ef6267255238014de9 /apps/http-proxy/src/IcnReceiver.h | |
parent | 8a4273ffe83b46bc018da58135427d40012282b8 (diff) |
[HICN-196] Add mtu to command line parameters.
Change-Id: Ib6932c23408630be1ca98146d22ac494ad5e5077
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'apps/http-proxy/src/IcnReceiver.h')
-rw-r--r-- | apps/http-proxy/src/IcnReceiver.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/http-proxy/src/IcnReceiver.h b/apps/http-proxy/src/IcnReceiver.h index 7d5c5e4c8..61ca4333a 100644 --- a/apps/http-proxy/src/IcnReceiver.h +++ b/apps/http-proxy/src/IcnReceiver.h @@ -31,7 +31,7 @@ class AsyncConsumerProducer { public: explicit AsyncConsumerProducer(const std::string& prefix, std::string& ip_address, std::string& port, - std::string& cache_size); + std::string& cache_size, std::string& mtu); void start(); @@ -55,6 +55,7 @@ class AsyncConsumerProducer { std::string ip_address_; std::string port_; uint32_t cache_size_; + uint32_t mtu_; uint64_t request_counter_; asio::signal_set signals_; |