From 1405e059bac55207021aa796c9ee9cb7b74f107b Mon Sep 17 00:00:00 2001 From: Zofia Abramowska Date: Tue, 26 Aug 2014 14:08:18 +0200 Subject: [PATCH] Add additional error code CYNARA_API_CACHE_MISS Change-Id: I2f128b28b19956409f0251f725a28a0e8ace2e7d --- src/include/cynara-client-error.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/include/cynara-client-error.h b/src/include/cynara-client-error.h index b4746b8..e5539ea 100644 --- a/src/include/cynara-client-error.h +++ b/src/include/cynara-client-error.h @@ -21,8 +21,8 @@ * @brief This file contains error codes returned by client APIs of Cynara. */ -#ifndef CYNARA_ERROR_H -#define CYNARA_ERROR_H +#ifndef CYNARA_CLIENT_ERROR_H +#define CYNARA_CLIENT_ERROR_H /** * \name Return Codes @@ -45,6 +45,9 @@ /*! \brief service not available */ #define CYNARA_API_SERVICE_NOT_AVAILABLE -4 + +/*! \brief indicating that value is not present in cache */ +#define CYNARA_API_CACHE_MISS -5 /** @}*/ -#endif // CYNARA_ERROR_H +#endif // CYNARA_CLIENT_ERROR_H -- 2.7.4