diff options
author | Jon Loeliger <jdl@netgate.com> | 2017-02-09 12:17:50 -0600 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2017-02-13 15:15:20 +0000 |
commit | 466f0d46d242aea1a598f5a9922528aa38d1653b (patch) | |
tree | 7af41f9939d8377ab80616e46c1acdd82117176e /src/vnet/ip/ip.api | |
parent | ce1b4c7f05ce28d7b73eb7ed0a8ea4bd483f09e9 (diff) |
Augment IP_DETAILS, IP_ADDRESS_DETAILS with a few context fields.
When handling the IP_DETAILS and IP_ADDRESS_DETAILS replies,
it is almost certainly going to require having both the is_ipv6
and sw_if_index context to handle them properly. Placing these
values in an essentially global location as the current VAT does
isn't thread-safe. Fruthermore, rather than forcing every
API user to hoop-jump to establish these context values, simply
provide them in their DETAILS reply messages.
Change-Id: I6a9e0cb16ecdbf87fca8fc5c7663e98d3a53c26c
Signed-off-by: Jon Loeliger <jdl@netgate.com>
Diffstat (limited to 'src/vnet/ip/ip.api')
-rw-r--r-- | src/vnet/ip/ip.api | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet/ip/ip.api b/src/vnet/ip/ip.api index 65f6e7a79ed..0a4a9c9773c 100644 --- a/src/vnet/ip/ip.api +++ b/src/vnet/ip/ip.api @@ -436,6 +436,8 @@ define ip_address_details u32 context; u8 ip[16]; u8 prefix_length; + u32 sw_if_index; + u8 is_ipv6; }; define ip_address_dump @@ -450,6 +452,7 @@ define ip_details { u32 sw_if_index; u32 context; + u8 is_ipv6; }; define ip_dump |