diff --git a/common/include/utils_internal.h b/common/include/utils_internal.h index 51705d0..1f7b3c3 100644 --- a/common/include/utils_internal.h +++ b/common/include/utils_internal.h @@ -10,6 +10,11 @@ namespace internal { static constexpr const char *UPDATE_REQUESTED{"requested"}; static constexpr const char *NO_CUSTOMER_REPOSITORY{"no customer repository"}; + static constexpr const int NO_CUSTOMER_REPOSITORY_CODE{-8}; + static constexpr const char *NO_ETC_CUSTOMER_REPOSITORY{"no etc/ in customer repository"}; + static constexpr const int NO_ETC_CUSTOMER_REPOSITORY_CODE{-9}; + static constexpr const char *NO_OPT_CUSTOMER_REPOSITORY{"no opt/ in customer repository"}; + static constexpr const int NO_OPT_CUSTOMER_REPOSITORY_CODE{-10}; static constexpr const char *ISMAS_CONNECTED{"connected"}; static constexpr const char *ISMAS_DISCONNECTED{"disconnected"};