mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2024-11-18 20:10:53 +00:00
Fixed bug #32561 tcp_poll argument definition out-of-order in documentation
This commit is contained in:
parent
856ccb5bb7
commit
4e3b2b9f6b
@ -233,6 +233,10 @@ HISTORY
|
|||||||
|
|
||||||
++ Bugfixes:
|
++ Bugfixes:
|
||||||
|
|
||||||
|
2011-02-17: Simon Goldschmidt
|
||||||
|
* rawapi.txt: Fixed bug #32561 tcp_poll argument definition out-of-order in
|
||||||
|
documentation
|
||||||
|
|
||||||
2011-02-17: Simon Goldschmidt
|
2011-02-17: Simon Goldschmidt
|
||||||
* many files: Added missing U/UL modifiers to fix 16-bit-arch portability.
|
* many files: Added missing U/UL modifiers to fix 16-bit-arch portability.
|
||||||
|
|
||||||
|
@ -251,8 +251,9 @@ if a call to tcp_write() has failed because memory wasn't available,
|
|||||||
the application may use the polling functionality to call tcp_write()
|
the application may use the polling functionality to call tcp_write()
|
||||||
again when the connection has been idle for a while.
|
again when the connection has been idle for a while.
|
||||||
|
|
||||||
- void tcp_poll(struct tcp_pcb *pcb, u8_t interval,
|
- void tcp_poll(struct tcp_pcb *pcb,
|
||||||
err_t (* poll)(void *arg, struct tcp_pcb *tpcb))
|
err_t (* poll)(void *arg, struct tcp_pcb *tpcb),
|
||||||
|
u8_t interval)
|
||||||
|
|
||||||
Specifies the polling interval and the callback function that should
|
Specifies the polling interval and the callback function that should
|
||||||
be called to poll the application. The interval is specified in
|
be called to poll the application. The interval is specified in
|
||||||
|
Loading…
Reference in New Issue
Block a user