Skip to content

Commit c88c545

Browse files
eschabelledsiper
authored andcommitted
in_forward: improve configuration parameter descriptions
- shared_key: clarify it's for secure forward authentication - self_hostname: explain it's used in handshake for secure forward auth - unix_perm: add trailing period for consistency - empty_shared_key: clarify it enables empty string as shared key Signed-off-by: Eric D. Schabell <[email protected]>
1 parent 1f37de5 commit c88c545

File tree

1 file changed

+4
-4
lines changed
  • plugins/in_forward

1 file changed

+4
-4
lines changed

plugins/in_forward/fw.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -481,12 +481,12 @@ static struct flb_config_map config_map[] = {
481481
{
482482
FLB_CONFIG_MAP_STR, "shared_key", NULL,
483483
0, FLB_TRUE, offsetof(struct flb_in_fw_config, shared_key),
484-
"Shared key for authentication"
484+
"Shared key for secure forward authentication."
485485
},
486486
{
487487
FLB_CONFIG_MAP_STR, "self_hostname", NULL,
488488
0, FLB_FALSE, 0,
489-
"Hostname"
489+
"Hostname used in the handshake process for secure forward authentication."
490490
},
491491
{
492492
FLB_CONFIG_MAP_STR, "security.users", NULL,
@@ -501,7 +501,7 @@ static struct flb_config_map config_map[] = {
501501
{
502502
FLB_CONFIG_MAP_STR, "unix_perm", (char *)NULL,
503503
0, FLB_TRUE, offsetof(struct flb_in_fw_config, unix_perm_str),
504-
"Set the permissions for the UNIX socket"
504+
"Set the permissions for the UNIX socket."
505505
},
506506
{
507507
FLB_CONFIG_MAP_SIZE, "buffer_chunk_size", FLB_IN_FW_CHUNK_SIZE,
@@ -516,7 +516,7 @@ static struct flb_config_map config_map[] = {
516516
{
517517
FLB_CONFIG_MAP_BOOL, "empty_shared_key", "false",
518518
0, FLB_TRUE, offsetof(struct flb_in_fw_config, empty_shared_key),
519-
"Set an empty shared key for authentication"
519+
"Enable an empty string as the shared key for authentication."
520520
},
521521
{0}
522522
};

0 commit comments

Comments
 (0)