readme.txt 1.1 KB

1234567891011121314151617181920212223242526
  1. lwIP for Win32
  2. This is an example port of lwIP for Win32. It uses WinPCAP to send & receive packets.
  3. To compile it, use the MSVC projects in the 'msvc' subdir, the CMake files, or the Makefile
  4. in the 'mingw' subdir.
  5. For all compilers/build systems:
  6. - you have to set an environment variable PCAP_DIR pointing to the WinPcap Developer's
  7. Pack (containing 'include' and 'lib')
  8. alternatively, place the WinPcap Developer's pack next to the "lwip" folder:
  9. "winpcap\WpdPack"
  10. You also will have to copy the file 'contrib/examples/example_app/lwipcfg.h.example' to
  11. 'contrib/examples/example_app/lwipcfg.h' and modify to suit your needs (WinPcap adapter number,
  12. IP configuration, applications...).
  13. Included in the contrib\ports\win32 directory is the network interface driver
  14. using the winpcap library.
  15. lwIP: http://savannah.nongnu.org/projects/lwip/
  16. WinPCap: https://www.winpcap.org/devel.htm
  17. Visual C++: http://www.microsoft.com/express/download/
  18. To compile the unittests (msvc\lwIP_unittests.sln), download check (tested with v0.11.0) from
  19. https://github.com/libcheck/check/releases/
  20. and place it in a folder "check" next to the "contrib" folder.