blob: 1f2f21dd19a92688ce4f17055b8f366b7813d99d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/* SPDX-License-Identifier: Apache-2.0
* Copyright(c) 2024 Cisco Systems, Inc.
*/
#include <http/http.h>
static clib_error_t *
test_http_authority_command_fn (vlib_main_t *vm, unformat_input_t *input,
vlib_cli_command_t *cmd)
{
u8 *target = 0;
http_uri_t authority;
int rv;
if (!unformat (input, "%v", &target))
return clib_error_return (0, "error: no input provided");
rv = http_parse_authority_form_target (target, &authority);
vec_free (target);
if (rv)
return clib_error_return (0, "error: parsing failed");
target = http_serialize_authority_form_target (&authority);
vlib_cli_output (vm, "%v", target);
vec_free (target);
return 0;
}
VLIB_CLI_COMMAND (test_http_authority_command) = {
.path = "test http authority-form",
.short_help = "test dns authority-form",
.function = test_http_authority_command_fn,
};
|