From 175053085a0cfb5e0a18e1ec1651ba45749cbaad Mon Sep 17 00:00:00 2001 From: likewise Date: Thu, 11 Mar 2004 20:04:16 +0000 Subject: [PATCH] Fixed @return in udp_sendto() docs, @see in udp_send*() docs. --- src/core/udp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/core/udp.c b/src/core/udp.c index 13c65042..b352669c 100644 --- a/src/core/udp.c +++ b/src/core/udp.c @@ -344,12 +344,11 @@ udp_input(struct pbuf *p, struct netif *inp) * be restored after the data is sent. * * @return lwIP error code. - * @return lwIP error code. * - ERR_OK. Successful. No error occured. * - ERR_MEM. Out of memory. * - ERR_RTE. Could not find route to destination address. * - * @see udp_disconnect() + * @see udp_disconnect() udp_send() */ err_t udp_sendto(struct udp_pcb *pcb, struct pbuf *p, @@ -383,7 +382,7 @@ udp_sendto(struct udp_pcb *pcb, struct pbuf *p, * - ERR_MEM. Out of memory. * - ERR_RTE. Could not find route to destination address. * - * @see udp_disconnect() + * @see udp_disconnect() udp_sendto() */ err_t udp_send(struct udp_pcb *pcb, struct pbuf *p)