session: support half-close connection
[vpp.git] / src / vnet / session / transport.h
index 9a9b89f..447552c 100644 (file)
@@ -74,6 +74,7 @@ typedef struct _transport_proto_vft
   u32 (*start_listen) (u32 session_index, transport_endpoint_t * lcl);
   u32 (*stop_listen) (u32 conn_index);
   int (*connect) (transport_endpoint_cfg_t * rmt);
+  void (*half_close) (u32 conn_index, u32 thread_index);
   void (*close) (u32 conn_index, u32 thread_index);
   void (*reset) (u32 conn_index, u32 thread_index);
   void (*cleanup) (u32 conn_index, u32 thread_index);
@@ -107,13 +108,15 @@ typedef struct _transport_proto_vft
   u8 *(*format_half_open) (u8 * s, va_list * args);
 
   /*
-   *  Properties retrieval
+   *  Properties retrieval/setting
    */
   void (*get_transport_endpoint) (u32 conn_index, u32 thread_index,
                                  transport_endpoint_t *tep, u8 is_lcl);
   void (*get_transport_listener_endpoint) (u32 conn_index,
                                           transport_endpoint_t *tep,
                                           u8 is_lcl);
+  int (*attribute) (u32 conn_index, u32 thread_index, u8 is_get,
+                   transport_endpt_attr_t *attr);
 
   /*
    * Properties
@@ -132,6 +135,8 @@ do {                                                                \
 } while (0)
 
 int transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep);
+void transport_half_close (transport_proto_t tp, u32 conn_index,
+                          u8 thread_index);
 void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index);
 void transport_reset (transport_proto_t tp, u32 conn_index, u8 thread_index);
 u32 transport_start_listen (transport_proto_t tp, u32 session_index,
@@ -145,6 +150,9 @@ void transport_get_endpoint (transport_proto_t tp, u32 conn_index,
                             u8 is_lcl);
 void transport_get_listener_endpoint (transport_proto_t tp, u32 conn_index,
                                      transport_endpoint_t * tep, u8 is_lcl);
+int transport_connection_attribute (transport_proto_t tp, u32 conn_index,
+                                   u8 thread_index, u8 is_get,
+                                   transport_endpt_attr_t *attr);
 
 static inline transport_connection_t *
 transport_get_connection (transport_proto_t tp, u32 conn_index,
@@ -339,6 +347,14 @@ void
 transport_connection_tx_pacer_update_bytes (transport_connection_t * tc,
                                            u32 bytes);
 
+/**
+ * Request pacer time update
+ *
+ * @param thread_index thread for which time is updated
+ * @param now          time now
+ */
+void transport_update_pacer_time (u32 thread_index, clib_time_type_t now);
+
 #endif /* SRC_VNET_SESSION_TRANSPORT_H_ */
 
 /*