diff options
Diffstat (limited to 'plugins/samples')
-rw-r--r-- | plugins/samples/ClientCtx.c | 9 | ||||
-rw-r--r-- | plugins/samples/HelloWorld.c | 3 |
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/samples/ClientCtx.c b/plugins/samples/ClientCtx.c index cda6abbb..3fa43adf 100644 --- a/plugins/samples/ClientCtx.c +++ b/plugins/samples/ClientCtx.c @@ -75,7 +75,7 @@ static void myCreate (struct afb_req request) ctx->count = 0; ctx->abcd = "SomeThingUseful"; - *request.context = ctx; + request.context = ctx; afb_req_success_f(request, NULL, "SUCCESS: create client context for plugin [%s]", handle->anythingYouWant); } @@ -86,7 +86,7 @@ static void myCreate (struct afb_req request) static void myAction (struct afb_req request) { MyPluginHandleT *handle = (MyPluginHandleT*) &global_handle; - MyClientContextT *ctx = (MyClientContextT*) *request.context; + MyClientContextT *ctx = (MyClientContextT*) request.context; // store something in our plugin private client context ctx->count++; @@ -100,7 +100,7 @@ static void myAction (struct afb_req request) static void myClose (struct afb_req request) { MyPluginHandleT *handle = (MyPluginHandleT*) &global_handle; - MyClientContextT *ctx = (MyClientContextT*) *request.context; + MyClientContextT *ctx = (MyClientContextT*) request.context; // store something in our plugin private client context ctx->count++; @@ -132,8 +132,9 @@ static const struct AFB_plugin plugin_desc = { .freeCtxCB = (void*)freeCtxCB }; -const struct AFB_plugin *pluginRegister () +const struct AFB_plugin *pluginRegister (const struct AFB_interface *itf) { + global_handle.anythingYouWant = "anythingYouWant"; return &plugin_desc; } diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c index 4f0af71f..c60cc70c 100644 --- a/plugins/samples/HelloWorld.c +++ b/plugins/samples/HelloWorld.c @@ -85,7 +85,6 @@ static void pingBug (struct afb_req request) { int a,b,c; - fprintf (stderr, "Use --timeout=10 to trap error\n"); b=4; c=0; a=b/c; @@ -128,7 +127,7 @@ static const struct AFB_plugin plugin_desc = { .apis = pluginApis }; -const struct AFB_plugin *pluginRegister () +const struct AFB_plugin *pluginRegister (const struct AFB_interface *itf) { return &plugin_desc; } |