src/api: mark arguments as unused

This commit is contained in:
James Peach 2024-03-24 11:50:48 +00:00
parent d0efd9ef7b
commit d5fc0cc825

View File

@ -2926,6 +2926,7 @@ lwip_sockopt_to_ipopt(int optname)
static void static void
lwip_getsockopt_impl_ipv6_checksum(int s, struct lwip_sock* sock, void* optval) lwip_getsockopt_impl_ipv6_checksum(int s, struct lwip_sock* sock, void* optval)
{ {
LWIP_UNUSED_ARG(s);
if (sock->conn->pcb.raw->chksum_reqd == 0) { if (sock->conn->pcb.raw->chksum_reqd == 0) {
*(int*)optval = -1; *(int*)optval = -1;
} }
@ -2939,6 +2940,7 @@ lwip_getsockopt_impl_ipv6_checksum(int s, struct lwip_sock* sock, void* optval)
static int static int
lwip_setsockopt_impl_ipv6_checksum(int s, struct lwip_sock* sock, const void* optval, socklen_t optlen) lwip_setsockopt_impl_ipv6_checksum(int s, struct lwip_sock* sock, const void* optval, socklen_t optlen)
{ {
LWIP_UNUSED_ARG(s);
/* It should not be possible to disable the checksum generation with ICMPv6 /* It should not be possible to disable the checksum generation with ICMPv6
* as per RFC 3542 chapter 3.1 */ * as per RFC 3542 chapter 3.1 */
if (sock->conn->pcb.raw->protocol == IPPROTO_ICMPV6) { if (sock->conn->pcb.raw->protocol == IPPROTO_ICMPV6) {