diff options
author | Jaap Keuter <jaap.keuter@xs4all.nl> | 2010-04-12 16:06:52 +0000 |
---|---|---|
committer | Jaap Keuter <jaap.keuter@xs4all.nl> | 2010-04-12 16:06:52 +0000 |
commit | f329cd5beca8493204a8a57c304a5cf6f92d84f5 (patch) | |
tree | 6f9fa49ca3e69218ada8965463f9f21dbe857da1 /docbook | |
parent | be36d742b619939a4195e6f97b86844d831e012f (diff) | |
download | wireshark-f329cd5beca8493204a8a57c304a5cf6f92d84f5.tar.gz wireshark-f329cd5beca8493204a8a57c304a5cf6f92d84f5.tar.bz2 wireshark-f329cd5beca8493204a8a57c304a5cf6f92d84f5.zip |
Add remark about including packet.h before tap.h
svn path=/trunk/; revision=32448
Diffstat (limited to 'docbook')
-rw-r--r-- | docbook/wsdg_src/WSDG_chapter_dissection.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docbook/wsdg_src/WSDG_chapter_dissection.xml b/docbook/wsdg_src/WSDG_chapter_dissection.xml index 6559327a19..ec9909692b 100644 --- a/docbook/wsdg_src/WSDG_chapter_dissection.xml +++ b/docbook/wsdg_src/WSDG_chapter_dissection.xml @@ -1022,7 +1022,8 @@ static guint get_foo_message_len(packet_info *pinfo, tvbuff_t *tvb, int offset) </para> <example><title>Initialising a tap</title> <programlisting> -<![CDATA[#include <epan/tap.h> +<![CDATA[#include <epan/packet.h> +#include <epan/tap.h> static int foo_tap = -1; |