aboutsummaryrefslogtreecommitdiffstats
path: root/ctrl/libhicnctrl/src/commands/command_listener.c
diff options
context:
space:
mode:
authorJordan Augé <jordan.auge+fdio@cisco.com>2022-10-14 10:37:53 +0200
committerJordan Augé <jordan.auge+fdio@cisco.com>2022-10-14 10:41:17 +0200
commitce244039639df2685d285020a723850400b26ed4 (patch)
treebf8390ddeb644aceb44eb067002f12252ffb5fcb /ctrl/libhicnctrl/src/commands/command_listener.c
parent12d21f032e9a67b327101c42481a546a48a6ac21 (diff)
fix(libhicnctrl): new create/face&route command fail
Change-Id: I49d80a741672c4f9da75e36cc816fc53f37ac158 Ticket: HICN-808 Signed-off-by: Jordan Augé <jordan.auge+fdio@cisco.com>
Diffstat (limited to 'ctrl/libhicnctrl/src/commands/command_listener.c')
-rw-r--r--ctrl/libhicnctrl/src/commands/command_listener.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/ctrl/libhicnctrl/src/commands/command_listener.c b/ctrl/libhicnctrl/src/commands/command_listener.c
index c11742bba..cfcd22f48 100644
--- a/ctrl/libhicnctrl/src/commands/command_listener.c
+++ b/ctrl/libhicnctrl/src/commands/command_listener.c
@@ -90,7 +90,16 @@ static const command_parser_t command_listener_create4 = {
COMMAND_REGISTER(command_listener_create4);
#endif
-static const command_parser_t command_listener_create6 = {
+static const command_parser_t command_listener_create4 = {
+ .action = ACTION_CREATE,
+ .object_type = OBJECT_TYPE_LISTENER,
+ .nparams = 4,
+ .parameters = {protocol_tcp_udp, symbolic, local_address, local_port},
+ .post_hook = (parser_hook_t)on_listener_create,
+};
+COMMAND_REGISTER(command_listener_create4);
+
+static const command_parser_t command_listener_create5 = {
.action = ACTION_CREATE,
.object_type = OBJECT_TYPE_LISTENER,
.nparams = 5,
@@ -98,7 +107,7 @@ static const command_parser_t command_listener_create6 = {
interface},
.post_hook = (parser_hook_t)on_listener_create,
};
-COMMAND_REGISTER(command_listener_create6);
+COMMAND_REGISTER(command_listener_create5);
static const command_parser_t command_listener_list = {
.action = ACTION_LIST,