From 344de0e1198ca78d97dcd332052b42e6ec06aa7b Mon Sep 17 00:00:00 2001 From: goldsimon Date: Tue, 24 May 2016 10:01:03 +0200 Subject: [PATCH] fixed comments on netconn_shutdown to prevent using full-duplex wording... --- src/api/api_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/api_lib.c b/src/api/api_lib.c index ae630781..9c54afcd 100644 --- a/src/api/api_lib.c +++ b/src/api/api_lib.c @@ -796,8 +796,8 @@ netconn_close(struct netconn *conn) * Shut down one or both sides of a TCP netconn (doesn't delete it). * * @param conn the TCP netconn to shut down - * @param shut_rx abort running reads - * @param shut_tx abort running writes + * @param shut_rx shut down the RX side (no more read possible after this) + * @param shut_tx shut down the TX side (no more write possible after this) * @return ERR_OK if the netconn was closed, any other err_t on error */ err_t