From ad3937df58cf294d902e04ca741e6ce4dfb832b0 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 30 Jan 2018 20:20:22 +0100 Subject: [PATCH] tcp: tiny doc update (mention tcp_output) --- src/core/tcp.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/core/tcp.c b/src/core/tcp.c index a9857f5e..46c92553 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -27,11 +27,12 @@ * * Sending TCP data * ---------------- - * TCP data is sent by enqueueing the data with a call to - * tcp_write(). When the data is successfully transmitted to the remote - * host, the application will be notified with a call to a specified - * callback function. + * TCP data is sent by enqueueing the data with a call to tcp_write() and + * triggering to send by calling tcp_output(). When the data is successfully + * transmitted to the remote host, the application will be notified with a + * call to a specified callback function. * - tcp_write() + * - tcp_output() * - tcp_sent() * * Receiving TCP data