err_t netconn_listen(struct netconn *conn);
err_t netconn_listen
Puts the TCP connection conn into the TCP LISTEN state. This means its purpose will become listening for incoming connections from remote peers. netconn_accept() is required to establish a connection resulting from incoming connection requests.
netconn_accept()