aboutsummaryrefslogtreecommitdiff
path: root/lwip/iioctl-ops.c
Commit message (Collapse)AuthorAgeFilesLines
* Using NETIF_FOREACH to replace netif for-loopsZhaoming Luo2024-10-271-3/+3
| | | | | | | | | Come across NETIF_FOREACH in /usr/include/lwip/lwip/netif.h, but I'm not sure if it affects some self-contained stuff. netif.h belongs to liblwip-dev. Message-ID: <tencent_3A8C7926D4CB059A970F2B5046C547149409@qq.com>
* rioctl: Use r not i group ioctl for SIOCADDRT/SIOCDELRTDamien Zammit2022-09-221-2/+3
| | | | Message-Id: <20220922004105.961869-1-damien@zamaudio.com>
* lwip: Add stubs for route ioctlsSamuel Thibault2022-08-301-0/+18
|
* Fix const warningsSamuel Thibault2022-01-171-1/+1
| | | | | Now that the RPCs have const, this forces us cleaning our const-meant functions.
* Make RPC input array parameters constSamuel Thibault2022-01-161-6/+6
| | | | | This follows mig's cf4bcc3f1435 ("Also add const qualifiers on server side")
* Fix build warningsSamuel Thibault2022-01-011-1/+1
| | | | No actual behavior change.
* Include required sockets headersJoan Lledó2018-05-011-0/+1
| | | | | | | * lwip/iioctl-ops.c: Include <lwip/inet.h>. * lwip/lwip-util.c: Likewise. * lwip/pfinet-ops.c: Include <lwip/sockets.h> and <lwip/inet.h>. * lwip/port/netif/hurdethif.c: Likewise.
* lwip: Add LwIP-based TCP/IP translatorJoan Lledó2017-12-181-0/+410
* Makefile (prog-subdirs): Add lwip. * config.make.in (HAVE_LIBLWIP, liblwip_CFLAGS, liblwip_LIBS): Define variables. * configure.ac: Check for liblwip. * lwip/: New directory.