1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Add HTTP requests example

This commit is contained in:
Matias Fontanini
2016-02-15 08:29:14 -08:00
parent eb1c43d293
commit 91a724fe2d
5 changed files with 188 additions and 8 deletions

View File

@@ -335,6 +335,22 @@ public:
*/
void auto_cleanup_payloads(bool value);
/**
* \brief Indicates whether the client flow's payloads should be
* automatically erased.
*
* \sa auto_cleanup_payloads
*/
void auto_cleanup_client_data(bool value);
/**
* \brief Indicates whether the server flow's payloads should be
* automatically erased.
*
* \sa auto_cleanup_payloads
*/
void auto_cleanup_server_data(bool value);
/**
* Enables tracking of acknowledged segments
*
@@ -370,7 +386,8 @@ private:
hwaddress_type server_hw_addr_;
timestamp_type create_time_;
timestamp_type last_seen_;
bool auto_cleanup_;
bool auto_cleanup_client_;
bool auto_cleanup_server_;
};
} // TCPIP