diff options
author | Steven <sluong@cisco.com> | 2017-09-08 15:40:32 -0700 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2017-09-11 10:15:43 +0000 |
commit | a19e1054b58024891691eaebeb13700cdce57fea (patch) | |
tree | 1fa8043e94b45a22dd27a40876534d4f5ea12983 /src/plugins/memif/cli.c | |
parent | 1500254bee11355bbd69cc1dd9705be4f002f2bd (diff) |
memif: mode ip is not settable from binary API
While mode ip is supported via the CLI for creating a memif interface,
it is not settable from the binary API due to missing code.
While at it, update the help usage to include the missing keyword secret.
Change-Id: Ia9c71f4017210a5e1733ce4992fbb566b7d20c1a
Signed-off-by: Steven <sluong@cisco.com>
Diffstat (limited to 'src/plugins/memif/cli.c')
-rw-r--r-- | src/plugins/memif/cli.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/memif/cli.c b/src/plugins/memif/cli.c index 8af761646a8..e1bd04441e0 100644 --- a/src/plugins/memif/cli.c +++ b/src/plugins/memif/cli.c @@ -109,8 +109,8 @@ VLIB_CLI_COMMAND (memif_create_command, static) = { .path = "create memif", .short_help = "create memif [id <id>] [socket <path>] " "[ring-size <size>] [buffer-size <size>] [hw-addr <mac-address>] " - "<master|slave> [rx-queues <number>] [tx-queues <number>]" - "[mode ip]", + "<master|slave> [rx-queues <number>] [tx-queues <number>] " + "[mode ip] [secret <string>]", .function = memif_create_command_fn, }; /* *INDENT-ON* */ |