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/vnet/session/session.api | |
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/vnet/session/session.api')
-rw-r--r-- | src/vnet/session/session.api | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vnet/session/session.api b/src/vnet/session/session.api index 53d05dfe426..533f65e85a2 100644 --- a/src/vnet/session/session.api +++ b/src/vnet/session/session.api @@ -250,7 +250,7 @@ autoreply define unbind_sock { @param hostname-len - length of hostname @param hostname - destination's hostname. If present, used by protocols like tls. - @param transport_opts - transport option (e.g. session id for quic). + @param parent_handle - handle of parent session (e.g. for opening quic streams). */ autoreply define connect_sock { u32 client_index; @@ -265,7 +265,7 @@ autoreply define connect_sock { u8 proto; u8 hostname_len; u8 hostname[hostname_len]; - u64 transport_opts; + u64 parent_handle; }; /** \brief ask app to add a new cut-through registration |