diff --git a/doc/divert.html b/doc/divert.html index 5adc97f..26f37a8 100644 --- a/doc/divert.html +++ b/doc/divert.html @@ -724,13 +724,13 @@ This could be achieved via the following filter.
 HANDLE handle = DivertOpen(
     "outbound and "
-    "data and "
+    "tcp.PayloadLength > 0 and "
     "tcp.DstPort == 80");
 
This filter specifies that we should only divert traffic that is
  1. outbound;
  2. -
  3. contains data; and
  4. +
  5. contains a non-empty payload; and
  6. has TCP destination port 80 (i.e. HTTP web traffic).