diff options
author | Tobias Jahnke <tobias.jahnke@microchip.com> | 2018-05-07 16:07:17 +0200 |
---|---|---|
committer | Walt Miner <walt@linux.com> | 2018-06-08 11:56:36 +0000 |
commit | 2c74cc419677a6470f537a2a374a3b31fee5da07 (patch) | |
tree | 0c140493100e49499506ff506f1f877ab4e5d238 /ucs2-afb/ucs_binding.c | |
parent | 3285a51b4d6b6d5e8aeba1f3dda76806f931a6b9 (diff) |
agl-service-unicens: prepare control message transmission in b64 format
Bug-AGL: SPEC-1177
Add new verb sendmessageb64.
Change-Id: I4f7c67141ede4e5c5d5f60acb4dd93ca4b46c271
Signed-off-by: Tobias Jahnke <tobias.jahnke@microchip.com>
(cherry picked from commit 84c3e1b169038e181526b4fbadab3d8f9322717c)
Diffstat (limited to 'ucs2-afb/ucs_binding.c')
-rw-r--r-- | ucs2-afb/ucs_binding.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ucs2-afb/ucs_binding.c b/ucs2-afb/ucs_binding.c index 553ed36..4f36576 100644 --- a/ucs2-afb/ucs_binding.c +++ b/ucs2-afb/ucs_binding.c @@ -857,6 +857,10 @@ PUBLIC void ucs2_sendmessage(struct afb_req request) { } } +PUBLIC void ucs2_sendmessageb64(struct afb_req req) { + afb_req_fail_f(req, "not-implemented", "Function not yet implemented."); +} + PUBLIC int ucs2_initbinding(void) { #ifndef DISABLE_AUTOSTART char *filename = GetDefaultConfig(); |