A simple CLI client for Gemini protocol, a minimal internet protocol.
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build buildUrl needs the schema, like: "gemini://example.org".
./build/code/bin/CliClient url portStandard protocol port is 1965.
You can try with some known urls.
Test must be activated at compilation time using flag -DENABLE_TESTING.
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DENABLE_TESTING=ON
cmake --build build
cmake --build build --target testThere are four type of sanitizers: TSAN, ASAN, LSAN and UBSAN.
The compilation resets the build path, so you should compile in a different path.
An example with the ASAN sanitizer:
cmake -S . -B build_asan -DCMAKE_BUILD_TYPE=asan -DENABLE_TESTING=ON
cmake --build build_asan
cmake --build build_asan --target test- add continuous integration;
- check memory leaks with asan.
TSL Socket is based on: https://gist.github.com/vedantroy/d2b99d774484cf4ea5165b200888e414