From a070b0de9f9e9cbca150eea4eda74757ca588bed Mon Sep 17 00:00:00 2001 From: Jordan Augé Date: Wed, 23 Sep 2020 17:50:52 +0200 Subject: [HICN-645] Control plane (WIP) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I4be6a40b690b62f22f57de6d8c10b01a1be42a6d Signed-off-by: Jordan Augé Signed-off-by: Enrico Loparco (eloparco) Signed-off-by: Mauro Sardara --- hicn-light/src/hicn/config/command_listener.c | 87 +++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 hicn-light/src/hicn/config/command_listener.c (limited to 'hicn-light/src/hicn/config/command_listener.c') diff --git a/hicn-light/src/hicn/config/command_listener.c b/hicn-light/src/hicn/config/command_listener.c new file mode 100644 index 000000000..9b0d3ce1a --- /dev/null +++ b/hicn-light/src/hicn/config/command_listener.c @@ -0,0 +1,87 @@ +#include +#include "command.h" + +/* Parameters */ + +static const command_parameter_t protocol_hicn = { + .name = "protocol", + .help = "Protocol [hicn].", + .type = TYPE_ENUM(connection_type), + .offset = offsetof(hc_listener_t, type), +}; + +static const command_parameter_t protocol_tcp_udp = { + .name = "protocol", + .help = "Protocol [tcp | udp]", + .type = TYPE_ENUM(connection_type), + .offset = offsetof(hc_listener_t, type), +}; + +static const command_parameter_t symbolic = { + .name = "symbolic", + .help = "User defined name for listener, must start with alpha and be alphanum", + .type = TYPE_SYMBOLIC, + .offset = offsetof(hc_listener_t, name), +}; + +static const command_parameter_t local_address = { + .name = "local_addr", + .help = "IPv4 or IPv6 address (or prefix protocol = hicn) assigend to the local interface", + .type = TYPE_IP_ADDRESS, + .offset = offsetof(hc_listener_t, local_addr), + .offset2 = offsetof(hc_listener_t, family), +}; + +static const command_parameter_t local_port = { + .name = "local_port", + .help = "Local port.", + .type = TYPE_INT(1, pow(2, 16) - 1), + .offset = offsetof(hc_listener_t, local_port), +}; + +static const command_parameter_t interface = { + .name = "interface", + .help = "Interface on which to bind", // optional ? + .type = TYPE_STRN(IFNAMSIZ), + .offset = offsetof(hc_listener_t, interface_name), +}; + +static const command_parameter_t symbolic_or_id = { + .name = "symbolic", + .help = "The listener symbolic name or id", + .type = TYPE_SYMBOLIC_OR_ID, + .offset = offsetof(hc_listener_t, name), +}; + +/* Commands */ + +static const command_parser_t command_listener_create4 = { + .action = ACTION_CREATE, + .object = OBJECT_LISTENER, + .nparams = 4, + .parameters = { protocol_hicn, symbolic, local_address, interface }, +}; +COMMAND_REGISTER(command_listener_create4); + +static const command_parser_t command_listener_create6 = { + .action = ACTION_CREATE, + .object = OBJECT_LISTENER, + .nparams = 5, + .parameters = { protocol_tcp_udp, symbolic, local_address, local_port, interface } +}; +COMMAND_REGISTER(command_listener_create6); + +static const command_parser_t command_listener_list = { + .action = ACTION_LIST, + .object = OBJECT_LISTENER, + .nparams = 0, +}; +COMMAND_REGISTER(command_listener_list); + +static const command_parser_t command_listener_remove = { + .action = ACTION_DELETE, + .object = OBJECT_LISTENER, + .nparams = 1, + .parameters = { symbolic_or_id }, +}; +COMMAND_REGISTER(command_listener_remove); -- cgit 1.2.3-korg