Searched refs:ip_type (Results 1 - 8 of 8) sorted by relevance

/seL4-camkes-master/projects/lwip/src/core/
H A Daltcp_alloc.c61 altcp_tls_new(struct altcp_tls_config *config, u8_t ip_type) argument
64 LWIP_UNUSED_ARG(ip_type);
66 inner_conn = altcp_tcp_new_ip_type(ip_type);
80 altcp_tls_alloc(void *arg, u8_t ip_type) argument
82 return altcp_tls_new((struct altcp_tls_config *)arg, ip_type);
H A Daltcp_tcp.c189 altcp_tcp_new_ip_type(u8_t ip_type) argument
193 struct tcp_pcb *tpcb = tcp_new_ip_type(ip_type);
212 altcp_tcp_alloc(void *arg, u8_t ip_type) argument
215 return altcp_tcp_new_ip_type(ip_type);
H A Daltcp.c185 * @param ip_type IP version of the pcb (@ref lwip_ip_addr_type)
189 altcp_new_ip_type(altcp_allocator_t *allocator, u8_t ip_type) argument
194 return altcp_tcp_new_ip_type(ip_type);
200 conn = allocator->alloc(allocator->arg, ip_type);
/seL4-camkes-master/projects/lwip/src/include/lwip/apps/
H A Daltcp_proxyconnect.h61 struct altcp_pcb *altcp_proxyconnect_new_tcp(struct altcp_proxyconnect_config *config, u8_t ip_type);
63 struct altcp_pcb *altcp_proxyconnect_alloc(void *arg, u8_t ip_type);
71 struct altcp_pcb *altcp_proxyconnect_tls_alloc(void *arg, u8_t ip_type);
/seL4-camkes-master/projects/lwip/src/include/lwip/
H A Daltcp_tcp.h56 struct altcp_pcb *altcp_tcp_new_ip_type(u8_t ip_type);
61 struct altcp_pcb *altcp_tcp_alloc(void *arg, u8_t ip_type);
H A Daltcp_tls.h95 struct altcp_pcb *altcp_tls_new(struct altcp_tls_config *config, u8_t ip_type);
103 struct altcp_pcb *altcp_tls_alloc(void *arg, u8_t ip_type);
H A Daltcp.h66 typedef struct altcp_pcb* (*altcp_new_fn)(void *arg, u8_t ip_type);
93 struct altcp_pcb *altcp_new_ip_type(altcp_allocator_t *allocator, u8_t ip_type);
160 #define altcp_new_ip_type(allocator, ip_type) tcp_new_ip_type(ip_type)
/seL4-camkes-master/projects/lwip/src/apps/http/
H A Daltcp_proxyconnect.c367 * @param ip_type IP type of the connection (@ref lwip_ip_addr_type)
370 altcp_proxyconnect_new_tcp(struct altcp_proxyconnect_config *config, u8_t ip_type) argument
375 inner_pcb = altcp_tcp_new_ip_type(ip_type);
394 * @param ip_type IP type of the connection (@ref lwip_ip_addr_type)
397 altcp_proxyconnect_alloc(void *arg, u8_t ip_type) argument
399 return altcp_proxyconnect_new_tcp((struct altcp_proxyconnect_config *)arg, ip_type);
413 * @param ip_type IP type of the connection (@ref lwip_ip_addr_type)
416 altcp_proxyconnect_tls_alloc(void *arg, u8_t ip_type) argument
422 proxy_pcb = altcp_proxyconnect_new_tcp(&cfg->proxy, ip_type);

Completed in 50 milliseconds