aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libtle_l4p/tle_tcp.h
diff options
context:
space:
mode:
authorKonstantin Ananyev <konstantin.ananyev@intel.com>2021-05-14 10:43:49 +0000
committerKonstantin Ananyev <konstantin.ananyev@intel.com>2021-06-03 14:21:58 +0000
commit76592f906ad040f5d99203c94719366ef42d2167 (patch)
tree5743c700d0e1713934379c566cfe88b4db001d45 /lib/libtle_l4p/tle_tcp.h
parentf91fc4629e95f861ddc520225c815167d117e22e (diff)
Revert "l4p/tcp: introduce tle_tcp_stream_establish() API"HEADmaster
This reverts commit e0d62f616439955946d24ad83d49552da24afd5d. Reason for revert: wrong branch Change-Id: I1b4fef19dc130de4538f319b2e417bfc8ab1a1c9 Signed-off-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
Diffstat (limited to 'lib/libtle_l4p/tle_tcp.h')
-rw-r--r--lib/libtle_l4p/tle_tcp.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/lib/libtle_l4p/tle_tcp.h b/lib/libtle_l4p/tle_tcp.h
index 3155dfa..b0cbda6 100644
--- a/lib/libtle_l4p/tle_tcp.h
+++ b/lib/libtle_l4p/tle_tcp.h
@@ -52,33 +52,6 @@ struct tle_tcp_stream_param {
};
/**
- * Timestamp option.
- */
-union tle_tcp_tsopt {
- uint64_t raw;
- struct {
- uint32_t val;
- uint32_t ecr;
- };
-};
-
-/**
- * SYN time option values.
- */
-struct tle_tcp_syn_opts {
- uint16_t mss;
- uint8_t wscale;
- union tle_tcp_tsopt ts;
-};
-
-struct tle_tcp_conn_info {
- uint16_t wnd;
- uint32_t seq;
- uint32_t ack;
- struct tle_tcp_syn_opts so;
-};
-
-/**
* create a new stream within given TCP context.
* @param ctx
* TCP context to create new stream within.
@@ -156,11 +129,6 @@ tle_tcp_stream_get_addr(const struct tle_stream *s,
*/
int tle_tcp_stream_get_mss(const struct tle_stream *ts);
-struct tle_stream *
-tle_tcp_stream_establish(struct tle_ctx *ctx,
- const struct tle_tcp_stream_param *prm,
- const struct tle_tcp_conn_info *ci);
-
/**
* Client mode connect API.
*/