diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-06-08 13:48:34 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-10 17:12:13 +0200 |
commit | 0683deff8c9ed8fe051ca134cdb158b062905573 (patch) | |
tree | 62765f730e3f2bf828ed9e36a49aa26870115e58 | |
parent | ad5fadb0a26e8f881d6d633fde25c1801dc8b254 (diff) |
Use latest version of submodules
Changes of afb-helpers:
(c7cd527 - Sebastien Douheret) Removed anonymous function in ScanDir and fixed
warnings
(98c64ea - José Bollo) wrap-json: Add clone facility
(5ae2a7a - Sebastien Douheret) Disabled debug code (only used for testing).
(563bdea - Jonathan Aillet) Correction to include dynamic api correctly
(9685413 - Sebastien Douheret) Fixed build warnings with gcc >= 7.3
(f250572 - Thierry Bultel) Added afb-helpers-utils.h
(f9f7e1e - Thierry Bultel) Fixed compilation warnings with gcc-7.2.0
(c0c40af - Sebastien Douheret) Fixed spelling
Changes of conf.d/app-templates:
(66f7bc8 - Thierry Bultel) start-on-target: uses RSYNC_PREFIX path
for config
(e400fb3 - Sebastien Douheret) Fixed spelling.
Changes of app-controller-submodule:
(690bdee - Jonathan Aillet) Fix a compilation issue due to modif of AFB_ReqSuccess
(4063ff0 - Clément Bénier) README:md: update README accordingly to new json scheme.
(e9f423a - Sebastien Douheret) Fixed crash due to call to json_object_put
(ce3e14c - Sebastien Douheret) Fix segfault when printing long message from lua
(6838dff - Sebastien Douheret) Fixed spelling of AFB_ReqSuccess
(5b079d4 - Jonathan Aillet) Remove an unnecessary variable
(ddd10be - Jonathan Aillet) Make parsing of action loading non blocking
(540522a - Jonathan Aillet) Use an external file for app fw functions link
(50feaf0 - Jonathan Aillet) Use macro to test request validity
(bcd9efc - Sebastien Douheret) Fixed build warnings with gcc >= 7.3
(0e30275 - Jonathan Aillet) Increase lua script max message size
(263731b - Jonathan Aillet) Prevent lost of config file path when searching
(8ce6d20 - Jonathan Aillet) Correct way that api actions are handled in controller
(64671ea - Jonathan Aillet) Handle more metadata in the controller.
(53bc4e4 - Jonathan Aillet) Add possibility to set prefix to NULL in CtlConfigScan
(4a72302 - Thierry Bultel) Fixed compilation warnings with gcc-7.2.0
(4b4a05d - Jonathan Aillet) Add an external field to CtlConfigT
(a070489 - Romain Forlot) Make action item from a LUA action mandatory
(dcc27f2 - Romain Forlot) Handle no prefix given
(a68eba9 - Romain Forlot) Good usage of strncat and strncpy
(2acfbf2 - Romain Forlot) Update to the new JSON syntax
(d02408c - Romain Forlot) Detect failure at OnLoad action calls
(fd225dd - Romain Forlot) Improve reliability and function calls
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
m--------- | afb-helpers | 0 | ||||
m--------- | app-controller-submodule | 0 | ||||
m--------- | conf.d/app-templates | 0 | ||||
-rw-r--r-- | src/test-binding.c | 2 |
4 files changed, 1 insertions, 1 deletions
diff --git a/afb-helpers b/afb-helpers -Subproject f5f1e251131b6dd54b8f7bb9a31a7ef6e231a94 +Subproject c7cd527a8350f736b8013f65db6f5a52b8cb05d diff --git a/app-controller-submodule b/app-controller-submodule -Subproject 2b6c0eb7d0df2bf818c439ee51b144a5e8d3216 +Subproject 690bdeee06f414fa149f5a9b62de7b215c3a80c diff --git a/conf.d/app-templates b/conf.d/app-templates -Subproject 6621af007c13b12bb1d33d0edf75db600a42f74 +Subproject 66f7bc88bfc7a17e1ef277c4f7293f95f6ec8b6 diff --git a/src/test-binding.c b/src/test-binding.c index 2f6f915..ddbc6d7 100644 --- a/src/test-binding.c +++ b/src/test-binding.c @@ -40,7 +40,7 @@ static void ctrlapi_ping(AFB_ReqT request) { count++; AFB_ReqNotice(request, "Controller:ping count=%d", count); - AFB_ReqSucess(request, json_object_new_int(count), NULL); + AFB_ReqSuccess(request, json_object_new_int(count), NULL); return; } |