tcp: tiny doc update (mention tcp_output)

This commit is contained in:
goldsimon 2018-01-30 20:20:22 +01:00
parent c597cfd6ca
commit ad3937df58

View File

@ -27,11 +27,12 @@
* *
* Sending TCP data * Sending TCP data
* ---------------- * ----------------
* TCP data is sent by enqueueing the data with a call to * TCP data is sent by enqueueing the data with a call to tcp_write() and
* tcp_write(). When the data is successfully transmitted to the remote * triggering to send by calling tcp_output(). When the data is successfully
* host, the application will be notified with a call to a specified * transmitted to the remote host, the application will be notified with a
* callback function. * call to a specified callback function.
* - tcp_write() * - tcp_write()
* - tcp_output()
* - tcp_sent() * - tcp_sent()
* *
* Receiving TCP data * Receiving TCP data