diff options
author | Dave Barach <dave@barachs.net> | 2017-01-14 10:30:50 -0500 |
---|---|---|
committer | Dave Barach <dave@barachs.net> | 2017-01-14 10:36:37 -0500 |
commit | 2feaffcb4af8e311b56328015bcfd82f5b15626c (patch) | |
tree | 59cdebbb5c0a4d3c41b8bea8c69a2328b97182f6 /src/vpp | |
parent | 878c609889dcdc58538d40d8b3f662320f88573d (diff) |
Provision linux stack ip4 and ip6 addresses for tap interfaces
To simplify system configuration. Converted existing code to use an
argument structure, instead of [one or two too many] discrete
parameters.
Change-Id: I3eddfa74eeed918c1b04a6285fba494651594332
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/vpp')
-rw-r--r-- | src/vpp/api/custom_dump.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/vpp/api/custom_dump.c b/src/vpp/api/custom_dump.c index 4cbb7082..8f59f5ee 100644 --- a/src/vpp/api/custom_dump.c +++ b/src/vpp/api/custom_dump.c @@ -438,7 +438,12 @@ static void *vl_api_tap_connect_t_print s = format (s, "tag %s ", mp->tag); if (memcmp (mp->mac_address, null_mac, 6)) s = format (s, "mac %U ", format_ethernet_address, mp->mac_address); - + if (mp->ip4_address_set) + s = format (s, "address %U/%d ", format_ip4_address, mp->ip4_address, + mp->ip4_mask_width); + if (mp->ip6_address_set) + s = format (s, "address %U/%d ", format_ip6_address, mp->ip6_address, + mp->ip6_mask_width); FINISH; } |