diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2019-04-08 17:54:39 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-04-24 17:54:38 +0000 |
commit | cdb7170ab44affe51c574eb2218744fff1bdd369 (patch) | |
tree | 56b852f5a203f96126df528198324baaead9317e /src/vnet/session/transport.h | |
parent | 689f5b5425ea0f179f7c5400e79440927b10198c (diff) |
Add get_endpoint in transport vft
This allows QUIC & TLS specific logic to be implemented, and meaningfull
IP/port to be returned when connection is overridden.
Change-Id: Id79c59fe4d7b16d36f0e96ad3e281c4026b5fe65
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Diffstat (limited to 'src/vnet/session/transport.h')
-rw-r--r-- | src/vnet/session/transport.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/vnet/session/transport.h b/src/vnet/session/transport.h index 993b8bd7354..73d7fba3c49 100644 --- a/src/vnet/session/transport.h +++ b/src/vnet/session/transport.h @@ -62,6 +62,11 @@ typedef struct _transport_proto_vft u8 *(*format_listener) (u8 * s, va_list * args); u8 *(*format_half_open) (u8 * s, va_list * args); + /* External API response */ + + void (*get_transport_endpoint) (u32 conn_index, u32 thread_index, ip46_address_t * ip, u16 * port, u8 * is_ip4, u8 is_lcl); + void (*get_transport_listener_endpoint) (u32 conn_index, ip46_address_t * ip, u16 * port, u8 * is_ip4, u8 is_lcl); + /* * Properties */ @@ -86,6 +91,12 @@ u32 transport_start_listen (transport_proto_t tp, u32 session_index, u32 transport_stop_listen (transport_proto_t tp, u32 conn_index); void transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index); +void transport_get_endpoint (transport_proto_t tp, u32 conn_index, + u32 thread_index, ip46_address_t * ip, + u16 * port, u8 * is_ip4, u8 is_lcl); +void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index, + ip46_address_t * ip, u16 * port, + u8 * is_ip4, u8 is_lcl); static inline transport_connection_t * transport_get_connection (transport_proto_t tp, u32 conn_index, |