diff options
author | Michele Papalini <micpapal@cisco.com> | 2020-02-17 17:08:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@fd.io> | 2020-02-17 17:08:12 +0000 |
commit | e539441a59c53f790f273eb6f0df79b38a2776fb (patch) | |
tree | bb2c38bc40d8f235acc1f82fbf2fc04e3e80f8f1 /apps/http-proxy/src/IcnReceiver.h | |
parent | 64a22cf6f812fbdd1b5a0eb184b178d88c6a329f (diff) | |
parent | bdb6ed48ba56ec9d7f2cd1ec62beb75593eb6dcb (diff) |
Merge "[HICN-524 HICN-526] Add manifest and content lifetime options to hproxy command line"
Diffstat (limited to 'apps/http-proxy/src/IcnReceiver.h')
-rw-r--r-- | apps/http-proxy/src/IcnReceiver.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/http-proxy/src/IcnReceiver.h b/apps/http-proxy/src/IcnReceiver.h index 67f615ad7..9d0ab5172 100644 --- a/apps/http-proxy/src/IcnReceiver.h +++ b/apps/http-proxy/src/IcnReceiver.h @@ -36,7 +36,8 @@ class AsyncConsumerProducer { explicit AsyncConsumerProducer(const std::string& prefix, std::string& ip_address, std::string& port, std::string& cache_size, std::string& mtu, - std::string& first_ipv6_word); + std::string& first_ipv6_word, + unsigned long default_content_lifetime, bool manifest); void start(); @@ -69,6 +70,8 @@ class AsyncConsumerProducer { // connection_map_; ATSConnector connector_; + unsigned long default_content_lifetime_; + // ResponseInfoMap --> max_seq_number + bool indicating whether request is in // production ResponseInfoMap chunk_number_map_; |