diff options
author | Neale Ranns <nranns@cisco.com> | 2019-04-04 12:43:36 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-04-05 07:52:55 +0000 |
commit | b71fa75d48b16f45618ba3fe3aa847c331f837b0 (patch) | |
tree | 8018d3f038b069c0db6e6e32c84ada77340b31c3 /src/vnet/ipsec/ipsec_io.h | |
parent | 6416e6274d0817a347d5b54bc61b4f1b617ff363 (diff) |
IPSEC: punt reasons; SPI=0, no-tunnel
Change-Id: If76992e283a27fa193a6865257ab3aa764066e48
Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'src/vnet/ipsec/ipsec_io.h')
-rw-r--r-- | src/vnet/ipsec/ipsec_io.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/ipsec/ipsec_io.h b/src/vnet/ipsec/ipsec_io.h index f156b48360f..32668a0474f 100644 --- a/src/vnet/ipsec/ipsec_io.h +++ b/src/vnet/ipsec/ipsec_io.h @@ -27,6 +27,7 @@ typedef enum } ipsec_output_next_t; #define foreach_ipsec_input_next \ + _ (PUNT, "punt-dispatch") \ _ (DROP, "error-drop") #define _(v, s) IPSEC_INPUT_NEXT_##v, |