lwip/contrib/ports/win32
Erik Ekman c748395bda PPP: Change data argument in sio_write to const
To fix the build after ppp_output_cb started taking it as const in
commit b2d1fc119d.

Fixes this failure:
../contrib/examples/ppp/pppos_example.c: In function ‘ppp_output_cb’:
../contrib/examples/ppp/pppos_example.c:163:29: error: cast discards ‘const’ qualifier from pointer target type [-Werror=cast-qual]
   return sio_write(ppp_sio, (u8_t*)data, len);
                             ^
2020-12-03 09:47:00 +01:00
..
check Whitespace cleanup in contrib dir 2018-10-22 20:53:58 +02:00
example_app default_netif.c: add missing include 2019-12-11 19:49:26 +01:00
include/arch win32: fix 2 compiler warning nits in win32 port 2020-02-10 21:55:32 +01:00
msvc add https example 2019-08-06 22:17:55 +02:00
Common.mk Import lwIP contrib rep 2018-10-02 12:19:13 +02:00
Filelists.cmake Try to get CMake build running on travis 2018-10-13 10:45:58 +02:00
pcapif_helper.c pcapif: add option PCAPIF_RX_READONLY to simulate readonly RX 2020-02-16 20:43:33 +01:00
pcapif_helper.h pcapif: add option PCAPIF_RX_READONLY to simulate readonly RX 2020-02-16 20:43:33 +01:00
pcapif.c Remove extra newlines in LWIP_ASSERT messages 2020-07-01 20:52:12 +02:00
pcapif.h Import lwIP contrib rep 2018-10-02 12:19:13 +02:00
readme.txt Import lwIP contrib rep 2018-10-02 12:19:13 +02:00
sio.c PPP: Change data argument in sio_write to const 2020-12-03 09:47:00 +01:00
sys_arch.c sys: add the possibility to fuzz what sys_now() returns 2020-02-17 21:39:46 +01:00

lwIP for Win32

This is an example port of lwIP for Win32. It uses WinPCAP to send & receive packets.
To compile it, use the MSVC projects in the 'msvc' subdir or the Makefile in the 'mingw' subdir.

For both compilers:
- the lwIP core repository must be in a folder "lwip" next to the "contrib" folder
- you have to set an environment variable PCAP_DIR pointing to the WinPcap Developer's
  Pack (containing 'include' and 'lib')
  alternatively, place the WinPcap Developer's pack next to the "lwip" and "contrib" folders:
  "winpcap\WpdPack"

You also will have to copy the file 'lwipcfg_msvc.h.example' to
'lwipcfg_msvc.h' and modify to suit your needs (WinPcap adapter number,
IP configuration, applications...).

Included in the contrib\ports\win32 directory is the network interface driver
using the winpcap library.

lwIP: http://savannah.nongnu.org/projects/lwip/
WinPCap: https://www.winpcap.org/devel.htm
Visual C++: http://www.microsoft.com/express/download/

To compile the unittests (msvc\lwIP_unittests.sln), download check (tested with v0.11.0) from
https://github.com/libcheck/check/releases/
and place it in a folder "check" next to the "contrib" folder.