43#ifndef LWIP_HDR_ALTCP_TCP_H
44#define LWIP_HDR_ALTCP_TCP_H
56struct altcp_pcb *altcp_tcp_new_ip_type(u8_t ip_type);
58#define altcp_tcp_new() altcp_tcp_new_ip_type(IPADDR_TYPE_V4)
59#define altcp_tcp_new_ip6() altcp_tcp_new_ip_type(IPADDR_TYPE_V6)
61struct altcp_pcb *altcp_tcp_alloc(
void *arg, u8_t ip_type);
64struct altcp_pcb *altcp_tcp_wrap(
struct tcp_pcb *tpcb);