diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-01-16 02:00:32 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2019-01-16 02:25:02 -0800 |
commit | 099e3b5d041cdd6ac34f7c63949a66e9a66e51ac (patch) | |
tree | 3a4f51bbdb8e4fbd11e2e10f3ac4408ef24784b0 /test | |
parent | d491059697d351fa99720a13555c90ef914ecc8b (diff) |
binding: network: remove unimplemented counter functionalityguppy_6.99.4guppy/6.99.46.99.4
counter_event wasn't implemented, and the respective reset_counters
verb doesn't really have any use.
Change-Id: Ibc2142b7f58c06e67430b31307bc7139837c9866
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/agl-service-network-ctl.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/agl-service-network-ctl.c b/test/agl-service-network-ctl.c index 91f86d4..6808b8d 100644 --- a/test/agl-service-network-ctl.c +++ b/test/agl-service-network-ctl.c @@ -142,11 +142,6 @@ static void on_state_reply(void *closure, struct afb_wsj1_msg *msg) on_reply(closure, "state", msg); } -static void on_reset_counters_reply(void *closure, struct afb_wsj1_msg *msg) -{ - on_reply(closure, "reset_counters", msg); -} - static void on_technologies_reply(void *closure, struct afb_wsj1_msg *msg) { on_reply(closure, "technologies", msg); @@ -602,10 +597,6 @@ static const struct cmd cmds[] = { .call = call_void, .reply = on_state_reply, }, { - .verb = "reset_counters", - .call = call_service_arg, - .reply = on_reset_counters_reply, - }, { .verb = "technologies", .call = call_void, .reply = on_technologies_reply, |