Revert "l4p/tcp: introduce tle_tcp_stream_establish() API"
[tldk.git] / lib / libtle_l4p / tle_tcp.h
index 3155dfa..b0cbda6 100644 (file)
@@ -51,33 +51,6 @@ struct tle_tcp_stream_param {
        struct tle_tcp_stream_cfg cfg;
 };
 
-/**
- * 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
@@ -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.
  */