From c37a85bc33b22101aeb4c8ab9b3fda923e6b6814 Mon Sep 17 00:00:00 2001 From: SPRESENSE <41312067+SPRESENSE@users.noreply.github.com> Date: Tue, 27 Jun 2023 11:23:59 +0900 Subject: [PATCH] include: nuttx: Re-allocate SIOCDENYINETSOCK The SIOCDENYINETSOCK definition is duplicate with SIOCSIFMTU. So, re-allocate SIOCDENYINETSOCK command number. --- include/nuttx/net/ioctl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nuttx/net/ioctl.h b/include/nuttx/net/ioctl.h index 7400a38a65b69..fdedfa636378d 100644 --- a/include/nuttx/net/ioctl.h +++ b/include/nuttx/net/ioctl.h @@ -125,7 +125,7 @@ /* Network socket control ***************************************************/ -#define SIOCDENYINETSOCK _SIOC(0x0033) /* Deny network socket. */ +#define SIOCDENYINETSOCK _SIOC(0x0036) /* Deny network socket. */ /* Bridge calls *************************************************************/