mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-04 14:29:39 +00:00
Fixed bug #46365: tcp_accept_null() should call tcp_abort()
This commit is contained in:
parent
c838e1ed5b
commit
92a241a29e
@ -6,6 +6,11 @@ HISTORY
|
||||
|
||||
++ New features:
|
||||
|
||||
2015-11-12: Dirk Ziegelmeier
|
||||
* Implement possibility to declare private memory pools. This is useful to
|
||||
decouple some apps from the core (SNMP stack) or make contrib app useage
|
||||
simpler (httpserver_raw)
|
||||
|
||||
2015-10-09: Simon Goldschmidt
|
||||
* started to move "private" header files containing implementation details to
|
||||
"lwip/priv/" include directory to seperate the API from the implementation.
|
||||
@ -287,6 +292,9 @@ HISTORY
|
||||
|
||||
++ Bugfixes:
|
||||
|
||||
2015-11-12: fix by Valery Ushakov
|
||||
* tcp_in.c: fixed bug #46365 tcp_accept_null() should call tcp_abort()
|
||||
|
||||
2015-10-02: Dirk Ziegelmeier/Simon Goldschmidt
|
||||
* snmp: cleaned up snmp structs API (fixed race conditions from bug #46089,
|
||||
reduce ram/rom usage of tables): incompatible change for private MIBs
|
||||
|
@ -511,6 +511,8 @@ tcp_accept_null(void *arg, struct tcp_pcb *pcb, err_t err)
|
||||
LWIP_UNUSED_ARG(pcb);
|
||||
LWIP_UNUSED_ARG(err);
|
||||
|
||||
tcp_abort(pcb);
|
||||
|
||||
return ERR_ABRT;
|
||||
}
|
||||
#endif /* LWIP_CALLBACK_API */
|
||||
|
Loading…
Reference in New Issue
Block a user