diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-01-28 14:47:17 -0500 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-12-28 09:45:41 +0000 |
commit | 5481ad4eb7fbbf32ff30450525c935de63ffcf0f (patch) | |
tree | 0d371afdf27b033511f83bad6249e17ec52688c6 /src/vnet/ip | |
parent | f6472e0f7b220226f2c2d4b7e05de4ebe7f36663 (diff) |
vlib: add missing file template descriptions
Add descriptions to clib_file_t template structures so that
sockets can be identified via the 'show unix file' cli command.
Type: fix
Change-Id: Ibf82d55aa6c7b1126bd252b76d0dc8b7076f5046
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'src/vnet/ip')
-rw-r--r-- | src/vnet/ip/punt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/ip/punt.c b/src/vnet/ip/punt.c index ffe0b83d7f4..7cdb5fcc084 100644 --- a/src/vnet/ip/punt.c +++ b/src/vnet/ip/punt.c @@ -869,7 +869,7 @@ punt_config (vlib_main_t * vm, unformat_input_t * input) clib_file_t template = { 0 }; template.read_function = punt_socket_read_ready; template.file_descriptor = pm->socket_fd; - template.description = format (0, "%s", socket_path); + template.description = format (0, "punt socket %s", socket_path); pm->clib_file_index = clib_file_add (fm, &template); pm->is_configured = true; |