Sep_24_2023-Dev

This commit is contained in:
Ned Wright
2023-09-24 10:28:57 +00:00
parent a4d1fb6f7f
commit 582791e37a
106 changed files with 12287 additions and 169 deletions

View File

@@ -143,7 +143,8 @@ enum class Notification {
SDWAN_POLICY_UPDATE,
SDWAN_POLICY_UPDATE_ERROR,
SDWAN_POLICY_UPDATE_LOG,
SDWAN_POLICY_UPDATE_ERROR_LOG
SDWAN_POLICY_UPDATE_ERROR_LOG,
SDWAN_POLICY_WARNING_LOG
};
enum class IssuingEngine {

View File

@@ -25,6 +25,7 @@ namespace Filesystem
{
bool exists(const std::string &path);
bool isDirectory(const std::string &path);
bool makeDir(const std::string &path, mode_t permission = S_IRWXU);
bool makeDirRecursive(const std::string &path, mode_t permission = S_IRWXU);
@@ -75,6 +76,13 @@ regexReplace(
} // namespace Regex
namespace Strings
{
std::string removeTrailingWhitespaces(std::string str);
} // namespace Strings
} // namespace NGEN
#endif // __AGENT_CORE_UTILITIES_H__