Skip to content

Commit

Permalink
Bump version and changelog for 0.9993 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bonsaiviking committed Jun 6, 2020
1 parent a1bdbd9 commit 3eff405
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@

## Npcap 0.9993 [2020-06-05]

* Fix a BSoD crash in `NPF_DoInternalRequest` triggered by suspending the
system while a capture is running. Added source annotations to allow static
analysis to catch bugs like this in the future. Fixes [#181](http://issues.npcap.org/181).

* Fix a bug introduced in Npcap 0.9992 which caused loopback capture to fail if
any loopback capture had been previously started and finished.

* Fix packet length calculation for loopback capture. The packet length was
being counted twice, leading to junk data being appended to captured packets.

* If installation fails for any reason other than a failure to uninstall the
previous version of Npcap, the current version's uninstaller will be used to
clean up any partial installation. The only remaining files will be the
`install.log` and `NPFInstall.log` in the Npcap installation directory.

* Replaced ReadWriteLock mechanisms with improved `NDIS_RW_LOCK_EX` new in NDIS
6.20 for improved performance.

* Moved object pool for captured packets from the filter module (adapter)
object to the open instance (pcap handle) to allow memory to be recovered
after a capture is closed.

## Npcap 0.9992 [2020-06-03]

* Npcap issues are now tracked on [their own Github Issues
Expand Down
6 changes: 3 additions & 3 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@
#define /*
!define /**/ WINPCAP_MINOR 0
#define /*
!define /**/ WINPCAP_REV 9992
!define /**/ WINPCAP_REV 9993
#define /*
!define /**/ WINPCAP_BUILD 603
!define /**/ WINPCAP_BUILD 605
#define /*
!define /**/ WINPCAP_VER_STRING "0.9992"
!define /**/ WINPCAP_VER_STRING "0.9993"

#define WINPCAP_WPCAP_STRING_VERSION WINPCAP_VER_STRING

Expand Down

0 comments on commit 3eff405

Please sign in to comment.