Home
last modified time | relevance | path

Searched refs:NETCONN_TCP (Results 1 – 4 of 4) sorted by relevance

/lib/liblwip/src/api/
Dapi_msg.c525 case NETCONN_TCP:
602 case NETCONN_TCP:
695 if (conn->type == NETCONN_TCP) {
753 LWIP_ASSERT("this is for tcp netconns only", (conn->type == NETCONN_TCP));
839 LWIP_ASSERT("msg->conn->type == NETCONN_TCP", msg->conn->type == NETCONN_TCP);
862 case NETCONN_TCP:
917 case NETCONN_TCP:
957 if ((conn->type == NETCONN_TCP) && (err == ERR_OK)) {
1002 case NETCONN_TCP:
1071 if (msg->conn->type == NETCONN_TCP) {
[all …]
Dsockets.c262 sockets[i].sendevent = (newconn->type == NETCONN_TCP ? (accepted != 0) : 1); in alloc_socket()
339 if (netconn_type(sock->conn) != NETCONN_TCP) { in lwip_accept()
458 is_tcp = netconn_type(sock->conn) == NETCONN_TCP; in lwip_close()
544 if (netconn_type(sock->conn) != NETCONN_TCP) { in lwip_listen()
599 if (netconn_type(sock->conn) == NETCONN_TCP) { in lwip_recvfrom()
629 if (netconn_type(sock->conn) == NETCONN_TCP) { in lwip_recvfrom()
652 if (netconn_type(sock->conn) == NETCONN_TCP) { in lwip_recvfrom()
671 if (netconn_type(sock->conn) == NETCONN_TCP) { in lwip_recvfrom()
696 if (netconn_type(sock->conn) == NETCONN_TCP) { in lwip_recvfrom()
716 if ((netconn_type(sock->conn) == NETCONN_TCP) && (buflen - copylen > 0)) { in lwip_recvfrom()
[all …]
Dapi_lib.c376 if (conn->type == NETCONN_TCP) in netconn_recv_data()
440 netconn_type(conn) == NETCONN_TCP, return ERR_ARG;); in netconn_recv_tcp_pbuf()
468 if (conn->type == NETCONN_TCP) in netconn_recv()
520 if ((conn != NULL) && (conn->type == NETCONN_TCP) && in netconn_recved()
606 LWIP_ERROR("netconn_write: invalid conn->type", (conn->type == NETCONN_TCP), return ERR_VAL;); in netconn_write_partly()
/lib/liblwip/src/include/lwip/
Dapi.h86 NETCONN_TCP = 0x10, enumerator