From fde37f4ffcaab1a8347c532634eb7274a6cc7e3a Mon Sep 17 00:00:00 2001 From: sitrin Date: Sun, 12 Jan 2020 23:25:49 -0500 Subject: [PATCH] minor typo in sample code Sample code should have read {{{process_packet}}} instead of {{{process_packed}}}. --- tutorial/tcp-streams/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/tcp-streams/index.html b/tutorial/tcp-streams/index.html index 99d3d5b7..350c6620 100644 --- a/tutorial/tcp-streams/index.html +++ b/tutorial/tcp-streams/index.html @@ -108,7 +108,7 @@

StreamFollower

// And start sniffing, forwarding all packets to our follower sniffer.sniff_loop([&](PDU& pdu) { - follower.process_packed(pdu); + follower.process_packet(pdu); return true; }) {% endhighlight %}