diff options
author | Dave Barach <dave@barachs.net> | 2019-05-24 13:03:01 -0400 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-05-28 13:04:54 +0000 |
commit | 9080096f7c548415fc4d5354c7e582a3eda1a5ed (patch) | |
tree | 61ebd1313827b5788dd05df425992d750900079f /src/vnet/ip/ip6.h | |
parent | 7704afe2c20a2c2a240874209b5803e22187b620 (diff) |
Add an ip6 local hop-by-hop protocol demux table
Add a minimal ip6 hbh header processing test.
ioam plugin: use ip6_local_hop_by_hop_register_protocol() in
udp_ping_init().
Please test the ioam plugin udp_ping path AYEC, so I can
publish the patch.
Change-Id: I74e35276d6c38c31022026cfd238fad5e4a54485
Signed-off-by: Dave Barach <dave@barachs.net>
Diffstat (limited to 'src/vnet/ip/ip6.h')
-rw-r--r-- | src/vnet/ip/ip6.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ip/ip6.h b/src/vnet/ip/ip6.h index 1a57c417342..e66bbdd0827 100644 --- a/src/vnet/ip/ip6.h +++ b/src/vnet/ip/ip6.h @@ -388,6 +388,7 @@ u16 ip6_tcp_udp_icmp_compute_checksum (vlib_main_t * vm, vlib_buffer_t * p0, int *bogus_lengthp); void ip6_register_protocol (u32 protocol, u32 node_index); +void ip6_local_hop_by_hop_register_protocol (u32 protocol, u32 node_index); serialize_function_t serialize_vnet_ip6_main, unserialize_vnet_ip6_main; |