X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=src%2Fvnet%2Fsession%2Fapplication_local.h;h=09c33cc072b243d0a9dee9baea23fb73e26da34b;hb=374df7a29407b706a5fb4fe6a6f1a7b84ec4a60e;hp=7b937d32f0b5237e66f3b9ea42c6b9a76a405c11;hpb=bab6c52f4544ebe352a1a9f832137d9b4069ae6c;p=vpp.git diff --git a/src/vnet/session/application_local.h b/src/vnet/session/application_local.h index 7b937d32f0b..09c33cc072b 100644 --- a/src/vnet/session/application_local.h +++ b/src/vnet/session/application_local.h @@ -20,19 +20,36 @@ #include #include +#define foreach_ct_flags \ + _ (CLIENT, "client") \ + _ (HALF_OPEN, "half-open") + +enum +{ +#define _(sym, str) CT_CONN_BIT_F_##sym, + foreach_ct_flags +#undef _ +}; + +typedef enum +{ +#define _(sym, str) CT_CONN_F_##sym = 1 << CT_CONN_BIT_F_##sym, + foreach_ct_flags +#undef _ +} ct_connection_flags_t; + typedef struct ct_connection_ { transport_connection_t connection; u32 client_wrk; u32 server_wrk; - u32 transport_listener_index; transport_proto_t actual_tp; u32 client_opaque; u32 peer_index; u64 segment_handle; svm_fifo_t *client_rx_fifo; svm_fifo_t *client_tx_fifo; - u8 is_client; + ct_connection_flags_t flags; } ct_connection_t; session_t *ct_session_get_peer (session_t * s);