Releases: ANLAB-KAIST/KENSv3
Releases · ANLAB-KAIST/KENSv3
v3.2.4
- [Hotfix] fix routing test. Thanks to @KimGyeongsu .
v3.2.3
v3.2.2
v3.2.1
v3.2.0
What's new in KENS v3.2
Internal changes
- This release contains mostly internal enhancement.
- KENS engine (E) no longer manages its memory manually. E uses smart pointers only.
- This enhancement fixes memory leaks and cuts down memory usages. (1.2GB -> 50MB)
API changes
- Now, KENS do not uses raw pointers for APIs.
- To prevent dangling reference,
getHost()
andgetPort()
methods are removed. Now, assignment classes have Host's and Port's method:std::optional<ipv4_t> ip = this->getHost()->getIPAddr(port);
->std::optional<ipv4_t> ip = getIPAddr(port);