diff options
Diffstat (limited to 'binding/network-api.c')
-rw-r--r-- | binding/network-api.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binding/network-api.c b/binding/network-api.c index bf8edca..0206973 100644 --- a/binding/network-api.c +++ b/binding/network-api.c @@ -1699,7 +1699,7 @@ static void network_agent_response(afb_req_t request) afb_req_success_f(request, NULL, "Network - agent response sent"); } -static const struct afb_verb_v3 network_verbs[] = { +static const afb_verb_t network_verbs[] = { { .verb = "subscribe", .session = AFB_SESSION_NONE, @@ -1788,7 +1788,7 @@ static const struct afb_verb_v3 network_verbs[] = { /* * description of the binding for afb-daemon */ -const struct afb_binding_v3 afbBindingV3 = { +const afb_binding_t afbBindingV3 = { .api = "network-manager", /* the API name (or binding name or prefix) */ .specification = "networking API", /* short description of of the binding */ .verbs = network_verbs, /* the array describing the verbs of the API */ |