define tcp_backlog_set() as dummy-define when backlog feature is disable

This commit is contained in:
sg
2016-03-18 20:05:04 +01:00
parent 3a62a45bcd
commit 44e1a2d8e2
3 changed files with 2 additions and 3 deletions

View File

@@ -1350,9 +1350,7 @@ lwip_netconn_do_listen(void *m)
} else if (msg->conn->state == NETCONN_LISTEN) {
/* already listening, allow updating of the backlog */
msg->err = ERR_OK;
#if TCP_LISTEN_BACKLOG
tcp_backlog_set(msg->conn->pcb.tcp, msg->msg.lb.backlog);
#endif /* TCP_LISTEN_BACKLOG */
}
} else {
msg->err = ERR_ARG;