netconn_tcp_recvd should take u32_t, not u16_t (as used in msg)

This commit is contained in:
goldsimon 2017-03-06 22:20:41 +01:00
parent f02119af62
commit f0bc2fa968
2 changed files with 3 additions and 3 deletions

View File

@ -559,7 +559,7 @@ netconn_recv_data(struct netconn *conn, void **new_buf, u8_t apiflags)
} }
static err_t static err_t
netconn_tcp_recvd_msg(struct netconn *conn, u16_t len, struct api_msg* msg) netconn_tcp_recvd_msg(struct netconn *conn, u32_t len, struct api_msg* msg)
{ {
LWIP_ERROR("netconn_recv_tcp_pbuf: invalid conn", (conn != NULL) && LWIP_ERROR("netconn_recv_tcp_pbuf: invalid conn", (conn != NULL) &&
NETCONNTYPE_GROUP(netconn_type(conn)) == NETCONN_TCP, return ERR_ARG;); NETCONNTYPE_GROUP(netconn_type(conn)) == NETCONN_TCP, return ERR_ARG;);
@ -571,7 +571,7 @@ netconn_tcp_recvd_msg(struct netconn *conn, u16_t len, struct api_msg* msg)
} }
err_t err_t
netconn_tcp_recvd(struct netconn *conn, u16_t len) netconn_tcp_recvd(struct netconn *conn, u32_t len)
{ {
err_t err; err_t err;
API_MSG_VAR_DECLARE(msg); API_MSG_VAR_DECLARE(msg);

View File

@ -320,7 +320,7 @@ err_t netconn_recv_udp_raw_netbuf(struct netconn *conn, struct netbuf **new_bu
err_t netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apiflags); err_t netconn_recv_udp_raw_netbuf_flags(struct netconn *conn, struct netbuf **new_buf, u8_t apiflags);
err_t netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf); err_t netconn_recv_tcp_pbuf(struct netconn *conn, struct pbuf **new_buf);
err_t netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags); err_t netconn_recv_tcp_pbuf_flags(struct netconn *conn, struct pbuf **new_buf, u8_t apiflags);
err_t netconn_tcp_recvd(struct netconn *conn, u16_t len); err_t netconn_tcp_recvd(struct netconn *conn, u32_t len);
err_t netconn_sendto(struct netconn *conn, struct netbuf *buf, err_t netconn_sendto(struct netconn *conn, struct netbuf *buf,
const ip_addr_t *addr, u16_t port); const ip_addr_t *addr, u16_t port);
err_t netconn_send(struct netconn *conn, struct netbuf *buf); err_t netconn_send(struct netconn *conn, struct netbuf *buf);