From: Stijn Tintel Date: Fri, 18 Feb 2022 16:13:56 +0000 (+0200) Subject: libubus: introduce new status messages X-Git-Url: http://git.openwrt.org/openwrt/openwrt.git%24%28if?a=commitdiff_plain;h=66baa44b8deea962d5cbf2f77736075eb78769f6;p=project%2Fubus.git libubus: introduce new status messages Introduce the following new status messages in libubus: UBUS_STATUS_NO_MEMORY UBUS_STATUS_PARSE_ERROR UBUS_STATUS_SYSTEM_ERROR Signed-off-by: Stijn Tintel Acked-by: Petr Štetiar Acked-by: Jo-Philipp Wich --- diff --git a/libubus.c b/libubus.c index aee2a3b..fc0d933 100644 --- a/libubus.c +++ b/libubus.c @@ -34,6 +34,9 @@ const char *__ubus_strerror[__UBUS_STATUS_LAST] = { [UBUS_STATUS_NOT_SUPPORTED] = "Operation not supported", [UBUS_STATUS_UNKNOWN_ERROR] = "Unknown error", [UBUS_STATUS_CONNECTION_FAILED] = "Connection failed", + [UBUS_STATUS_NO_MEMORY] = "Out of memory", + [UBUS_STATUS_PARSE_ERROR] = "Parsing message data failed", + [UBUS_STATUS_SYSTEM_ERROR] = "System error", }; struct blob_buf b __hidden = {}; diff --git a/ubusmsg.h b/ubusmsg.h index 398b126..b2df8dc 100644 --- a/ubusmsg.h +++ b/ubusmsg.h @@ -127,6 +127,9 @@ enum ubus_msg_status { UBUS_STATUS_NOT_SUPPORTED, UBUS_STATUS_UNKNOWN_ERROR, UBUS_STATUS_CONNECTION_FAILED, + UBUS_STATUS_NO_MEMORY, + UBUS_STATUS_PARSE_ERROR, + UBUS_STATUS_SYSTEM_ERROR, __UBUS_STATUS_LAST };