nuttx/net/local
chao an 1cb11968b7 net/ip: fix compile break if enable NET_LOCAL_SCM
1.
net/slip.c:865:29: warning: unused variable ‘priv’ [-Wunused-variable]
  865 |   FAR struct slip_driver_s *priv =
      |                             ^~~~
net/slip.c: In function ‘slip_rmmac’:
net/slip.c:895:29: warning: unused variable ‘priv’ [-Wunused-variable]
  895 |   FAR struct slip_driver_s *priv =
      |                             ^~~~
2.
local/local_sendmsg.c: In function ‘local_sendmsg’:
local/local_sendmsg.c:423:18: warning: ‘count’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  423 |           return count;
      |                  ^~~~~
local/local_sendmsg.c:131:11: warning: ‘i’ may be used uninitialized in this function [-Wmaybe-uninitialized]
  131 |   while (i-- > 0)
      |          ~^~
local/local_sendmsg.c:71:7: note: ‘i’ was declared here
   71 |   int i;
      |       ^

Signed-off-by: chao an <anchao@xiaomi.com>
2023-02-07 12:46:40 +02:00
..
Kconfig net/local: rename NET_LOCAL_VFS_PATH to follow linux 2023-01-04 20:50:38 +08:00
local_accept.c net: consistent the net sem wait naming conversion 2023-01-15 12:31:30 -03:00
local_bind.c net/local: Support the abstract path 2022-12-18 20:12:30 +02:00
local_conn.c sched/getpid: replace syscall getpid/tid/ppid() to kernel version 2023-02-02 10:33:01 +08:00
local_connect.c net/local_connect:Align the returned error code with Linux 2023-01-28 23:27:58 +02:00
local_fifo.c net/local:set POLLIN/POLLOUT threshold for local fifo 2023-01-13 12:27:54 +08:00
local_listen.c local: add net_lock to local_listen 2022-11-28 16:36:39 +08:00
local_netpoll.c net_local: fix error when work with epoll 2022-12-31 02:23:50 +08:00
local_recvmsg.c vfs: Suppoprt F_DUPFD_CLOEXEC and MSG_CMSG_CLOEXEC 2023-02-02 01:00:10 +02:00
local_recvutils.c net/local: Return -EINVAL if the address length passed to local_bind is too small 2022-12-18 20:12:30 +02:00
local_release.c libc: Move queue.h from include to include/nuttx 2022-09-26 08:04:58 +02:00
local_sendmsg.c net/ip: fix compile break if enable NET_LOCAL_SCM 2023-02-07 12:46:40 +02:00
local_sendpacket.c net/local: Remove the sync preamble from datagram 2022-08-10 09:50:25 +03:00
local_sockif.c net: Implement shutdown() for local stream socket 2023-01-31 11:15:01 +08:00
local.h net/local: Remove LOCAL_TYPE_UNTYPED 2022-12-18 20:12:30 +02:00
Make.defs