From 10332773ff3fdc27daf560510b35ed3cba1f9eeb Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 8 Aug 2016 16:09:26 +0200 Subject: [PATCH] Remove tcp_accepted() from rawapi.txt. Thanks to Sergio Caprile for pointing this out! --- doc/rawapi.txt | 9 --------- 1 file changed, 9 deletions(-) diff --git a/doc/rawapi.txt b/doc/rawapi.txt index ce5b42ab..763a0efc 100644 --- a/doc/rawapi.txt +++ b/doc/rawapi.txt @@ -171,15 +171,6 @@ incoming connections or be explicitly connected to another host. in the listen queue to the value specified by the backlog argument. To use it, your need to set TCP_LISTEN_BACKLOG=1 in your lwipopts.h. -- void tcp_accepted(struct tcp_pcb *pcb) - - Inform lwIP that an incoming connection has been accepted. This would - usually be called from the accept callback. This allows lwIP to perform - housekeeping tasks, such as allowing further incoming connections to be - queued in the listen backlog. - ATTENTION: the PCB passed in must be the listening pcb, not the pcb passed - into the accept callback! - - void tcp_accept(struct tcp_pcb *pcb, err_t (* accept)(void *arg, struct tcp_pcb *newpcb, err_t err))