diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2019-07-17 11:02:20 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-07-19 15:40:02 +0000 |
commit | 8ac1d6d05f2a0d6759284d4eeb5079644a5c8c86 (patch) | |
tree | f5105f805c0c7e1ee57fe8ade14f9292bda253ec /src/vcl/vppcom.h | |
parent | 4f74e9ef34d2bf22c70b78f91613cfd43f9a7bd4 (diff) |
session: Use parent_handle instead of transport_opts
Type: feature
This is mostly used for quic in the case of a stream
creation (i.e. connect on an already established QUIC
session). We want do default parent_handle to INVALID
to be able to distinguish it from parent_handle = 0
Change-Id: Id5ac0b0155a3c44e51334231b711e4fd87a96a10
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/vcl/vppcom.h')
-rw-r--r-- | src/vcl/vppcom.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vcl/vppcom.h b/src/vcl/vppcom.h index b05eae7150c..90bec310d06 100644 --- a/src/vcl/vppcom.h +++ b/src/vcl/vppcom.h @@ -105,7 +105,7 @@ typedef struct vppcom_endpt_t_ uint8_t is_ip4; uint8_t *ip; uint16_t port; - uint64_t transport_opts; + uint64_t parent_handle; } vppcom_endpt_t; typedef uint32_t vcl_session_handle_t; |