lwip/contrib/ports/win32
2023-05-11 20:26:21 +02:00
..
check Whitespace cleanup in contrib dir 2018-10-22 20:53:58 +02:00
example_app Added warning to cmake instructions when lwipcfg.h isn't present. 2022-12-22 20:42:25 +01:00
include/arch fix some compile problems with mingw 2022-02-12 09:40:32 +01:00
msvc ci: fix compiling test_tcp_state.c; add to msvc project 2023-05-11 20:26:21 +02:00
Common.mk Import lwIP contrib rep 2018-10-02 12:19:13 +02:00
Filelists.cmake get cmake to compile under windows with ms cl compiler 2023-01-03 21:34:05 +01:00
pcapif_helper.c fix some compile problems with mingw 2022-02-12 09:40:32 +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 some documentation fixes after merging contrib and example apps 2022-12-22 21:42:42 +01:00
sio.c PPP: Change data argument in sio_write to const 2020-12-03 09:47:00 +01:00
sys_arch.c Replace C++ comment with standard C comment to avoid error during building with -Werror. 2022-05-09 21:07:14 +02: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, the CMake files, or the Makefile
in the 'mingw' subdir.

For all compilers/build systems:
- 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" folder:
  "winpcap\WpdPack"

You also will have to copy the file 'contrib/examples/example_app/lwipcfg.h.example' to
'contrib/examples/example_app/lwipcfg.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.