From 10f4604939997199ec1c404d609d818ece611e66 Mon Sep 17 00:00:00 2001 From: goldsimon Date: Sat, 16 Jun 2007 14:09:27 +0000 Subject: [PATCH] Corrected some copy & paste errors --- src/core/tcp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/tcp.c b/src/core/tcp.c index f0a31311..f0540cfc 100644 --- a/src/core/tcp.c +++ b/src/core/tcp.c @@ -1015,7 +1015,7 @@ tcp_recv(struct tcp_pcb *pcb, * has been successfully delivered to the remote host. * * @param pcb tcp_pcb to set the sent callback - * @param recv callback function to call for this pcb when data is successfully sent + * @param sent callback function to call for this pcb when data is successfully sent */ void tcp_sent(struct tcp_pcb *pcb, @@ -1029,7 +1029,7 @@ tcp_sent(struct tcp_pcb *pcb, * has occured on the connection. * * @param pcb tcp_pcb to set the err callback - * @param recv callback function to call for this pcb when a fatal error + * @param errf callback function to call for this pcb when a fatal error * has occured on the connection */ void @@ -1044,7 +1044,7 @@ tcp_err(struct tcp_pcb *pcb, * LISTENing connection has been connected to another host. * * @param pcb tcp_pcb to set the accept callback - * @param recv callback function to call for this pcb when LISTENing + * @param accept callback function to call for this pcb when LISTENing * connection has been connected to another host */ void