From 9ba22083ee7cc70e825ca8cf77e942bef6a4ae40 Mon Sep 17 00:00:00 2001 From: "Martine S. Lenders" Date: Wed, 19 Jun 2019 14:18:45 +0200 Subject: [PATCH] sock_ip: fix documenation referring to UDP sock --- sys/include/net/sock/ip.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/include/net/sock/ip.h b/sys/include/net/sock/ip.h index 17950625d37f..e6000bbfb0c5 100644 --- a/sys/include/net/sock/ip.h +++ b/sys/include/net/sock/ip.h @@ -362,7 +362,7 @@ void sock_ip_close(sock_ip_t *sock); int sock_ip_get_local(sock_ip_t *sock, sock_ip_ep_t *ep); /** - * @brief Gets the remote end point of a UDP sock object + * @brief Gets the remote end point of a raw IPv4/IPv6 sock object * * @pre `(sock != NULL) && (ep != NULL)` * @@ -373,7 +373,7 @@ int sock_ip_get_local(sock_ip_t *sock, sock_ip_ep_t *ep); * implementation might choose to return the address on this interface the * @p sock is bound to in @p ep's sock_ip_ep_t::addr. * - * @param[in] sock A UDP sock object. + * @param[in] sock A raw IPv4/IPv6 sock object. * @param[out] ep The remote end point. * * @return 0 on success.