1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #11721 from miri64/sock_ip/fix/doc-udp

sock_ip: fix documenation referring to UDP sock
This commit is contained in:
Semjon Kerner 2019-06-19 14:59:40 +02:00 committed by GitHub
commit c332514875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.