wazuh / wazuh-agent

Wazuh agent, the Wazuh agent for endpoints.
GNU Affero General Public License v3.0
2 stars 1 forks source link

Design and development of the configuration parser module for the new agent #26

Open TomasTurina opened 3 days ago

TomasTurina commented 3 days ago

Description

As part of the development of the new agent MVP, it is necessary to develop a new configuration parser module.

Take into account the following:

Nicogp commented 2 days ago

Libraries investigation

The official TOML Wiki lists three C++ libraries:

toml11

Documentation Recent activity in the repository. Licence: MIT Standar: C++11/14/17/20 Features:

tomlcpp

Documentation (Only a Readme) Last update: two years ago. Licence: MIT Standar: This is a C++ wrapper around the C library available here: https://github.com/cktan/tomlc99. Features:

toml++

Documentation Last update: 4 months ago. Licence: MIT Standar: C++17 (plus some C++20 features where available, e.g. experimental support for [char8_t] Features:

Nicogp commented 11 hours ago

Update