We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1c021 commit f3aa441Copy full SHA for f3aa441
storage/cttController.cpp
@@ -100,6 +100,11 @@ std::vector<std::byte> CttController::assemble_state(
100
return state;
101
}
102
103
+CttController::~CttController() noexcept
104
+{
105
+ m_commander.reset();
106
+}
107
+
108
} // ipxp
109
110
#endif /* WITH_CTT */
storage/cttController.hpp
@@ -73,6 +73,8 @@ class CttController {
73
*/
74
void export_record(uint64_t flow_hash_ctt);
75
76
+ ~CttController() noexcept;
77
78
private:
79
std::unique_ptr<ctt::AsyncCommander> m_commander;
80
size_t key_size_bytes;
0 commit comments