aboutsummaryrefslogtreecommitdiffstats
path: root/src/afb-stub-ws.c
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2017-09-21 07:57:24 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2017-10-09 14:08:32 +0200
commitf2e72e1858d0be1a9cf3c0c4263f0bd81570d0e8 (patch)
tree392c0dbdc797d7400e2801124b4629b9906beb65 /src/afb-stub-ws.c
parent91b744a510bbf41526f0931df2320379bec87c38 (diff)
afb-api: Define the notion of group for concurrency
Change-Id: Iafbbff8387bb1f8577cb7aeb6e8ed4b14ab1f4a4 Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/afb-stub-ws.c')
-rw-r--r--src/afb-stub-ws.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afb-stub-ws.c b/src/afb-stub-ws.c
index 83f07cac..bdc2c144 100644
--- a/src/afb-stub-ws.c
+++ b/src/afb-stub-ws.c
@@ -680,7 +680,7 @@ struct afb_api afb_stub_ws_client_api(struct afb_stub_ws *stubws)
assert(!stubws->listener); /* check client */
api.closure = stubws;
api.itf = &ws_api_itf;
- api.noconcurrency = 0;
+ api.group = NULL;
return api;
}