From 59c3d05b30c63241295f0d482a067cf4ddf303f1 Mon Sep 17 00:00:00 2001 From: Rinat Ibragimov Date: Thu, 7 Feb 2019 15:55:55 +0300 Subject: [PATCH] remove unused type TfwTlsCtx --- tempesta_fw/tls.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/tempesta_fw/tls.h b/tempesta_fw/tls.h index 906830ba0..efbcf62b0 100644 --- a/tempesta_fw/tls.h +++ b/tempesta_fw/tls.h @@ -23,21 +23,6 @@ #include "gfsm.h" #include "ttls.h" -/* - * TLS context handling for chunked data in skb list. - * TlsCtx is unaware of network datata chunks, so this structure links - * network chunked I/O with the higher layer TLS processing. - * - * @off - data offset within first skb in @skb_list; - * @chunks - number of contigious memory chunks in all skbs in @skb_list; - */ -typedef struct { - TlsCtx tls; - struct sk_buff *skb_list; - unsigned int off; - unsigned int chunks; -} TfwTlsCtx; - #define TFW_FSM_TLS TFW_FSM_HTTPS /**