Name and version: * Now officially called 'WinDivert' * Now officially working towards a version 1.0 release New features: * WinDivert now supports a packet-sniffing mode. This mode merely copies packets, and does not drop the original. * WinDivert now also supports a packet-dropping mode. * WinDivert now supports filter priorities. * WinDivert now supports a forwarded packet layer (WARNING: untested). * WinDivert now supports get/set parameters such as packet queue length and time. * WinDivert now supports larger filters (but use at own risk). * WinDivert now uninstalls the driver on program exit/library unload * Different versions of WinDivert can co-exist on the same machine (WARNING: untested, as there is currently only one version). New License: * WinDivert is now LGPL. This is less restrictive than the GPL so WinDivert can be linked to by commercial software (under the terms of the LGPL license). Technical: * Cleaner IOCTL interface. * Cleaner driver implementation. * Thread local events in WinDivert.dll * Many minor tweaks and fixes.
11 lines
258 B
Makefile
11 lines
258 B
Makefile
!IF "$(_BUILDARCH)" == "x86"
|
|
CPU=i386
|
|
!ELSE
|
|
CPU=$(_BUILDARCH)
|
|
!ENDIF
|
|
|
|
$(TARGETPATH)\$(CPU)\WinDivert.inf: divert.inf
|
|
copy /y divert.inf $@
|
|
$(TARGETPATH)\$(CPU)\WdfCoInstaller01009.dll:
|
|
copy /y $(BASEDIR)\redist\wdf\$(_BUILDARCH)\WdfCoInstaller01009.dll $@
|