Fix out-of-date documentation

This commit is contained in:
basil00
2011-08-19 22:08:29 +08:00
parent 019f9d509b
commit cf80d12e5d
+2 -2
View File
@@ -724,13 +724,13 @@ This could be achieved via the following filter.
<pre>
HANDLE handle = DivertOpen(
"outbound and "
"data and "
"tcp.PayloadLength &gt; 0 and "
"tcp.DstPort == 80");
</pre>
This filter specifies that we should only divert traffic that is
<ol>
<li>outbound;</li>
<li>contains data; and</li>
<li>contains a non-empty payload; and</li>
<li>has TCP destination port 80 (i.e. HTTP web traffic).
</ol>
</p><p>