diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-12 13:58:00 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2015-12-12 13:58:00 +0100 |
commit | 37c1f71d519420addb71c6137e551ecb51336f7c (patch) | |
tree | 6f08303f8ed7dc4d9307690607c07148cf7dca3e /include/local-def.h | |
parent | d00571d3c5365f40e7ec2ec3ab0f636afa0db480 (diff) |
Added --token=xxxxx for initial shared secret
Diffstat (limited to 'include/local-def.h')
-rw-r--r-- | include/local-def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/local-def.h b/include/local-def.h index 791f4c19..b37cd757 100644 --- a/include/local-def.h +++ b/include/local-def.h @@ -80,7 +80,7 @@ extern int verbose; // this is the only global variable typedef enum {AFB_PLUGIN_JSON=123456789, AFB_PLUGIN_JSCRIPT=987654321, AFB_PLUGIN_RAW=987123546} AFB_pluginT; // prebuild json error are constructed in config.c -typedef enum { AFB_FALSE, AFB_TRUE, AFB_FATAL, AFB_FAIL, AFB_WARNING, AFB_EMPTY, AFB_SUCCESS, AFB_DONE} AFB_error; +typedef enum { AFB_FALSE, AFB_TRUE, AFB_FATAL, AFB_FAIL, AFB_WARNING, AFB_EMPTY, AFB_SUCCESS, AFB_DONE, AFB_UNAUTH} AFB_error; extern char *ERROR_LABEL[]; #define ERROR_LABEL_DEF {"false", "true","fatal", "fail", "warning", "empty", "success"} |