From cf80d12e5d6b6a9dcd8630e85cf7835104ade0cf Mon Sep 17 00:00:00 2001
From: basil00
Date: Fri, 19 Aug 2011 22:08:29 +0800
Subject: [PATCH] Fix out-of-date documentation
---
doc/divert.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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
- outbound;
-- contains data; and
+- contains a non-empty payload; and
- has TCP destination port 80 (i.e. HTTP web traffic).