aboutsummaryrefslogtreecommitdiffstats
path: root/docbook/wsdg_src/WSDG_chapter_dissection.xml
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2008-08-13 16:44:18 +0000
committerBill Meier <wmeier@newsguy.com>2008-08-13 16:44:18 +0000
commit0b499492f73f9696b609b571dbd633935f59e8f3 (patch)
tree9577f3588630c040f0c929a7d3b365da5cc65215 /docbook/wsdg_src/WSDG_chapter_dissection.xml
parent895df0eeeac068f9e689b81d9c4ec4112a7fa49d (diff)
Fix various minor typos and spelling errors
svn path=/trunk/; revision=26008
Diffstat (limited to 'docbook/wsdg_src/WSDG_chapter_dissection.xml')
-rw-r--r--docbook/wsdg_src/WSDG_chapter_dissection.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/docbook/wsdg_src/WSDG_chapter_dissection.xml b/docbook/wsdg_src/WSDG_chapter_dissection.xml
index e01418543b..3637e2d0e2 100644
--- a/docbook/wsdg_src/WSDG_chapter_dissection.xml
+++ b/docbook/wsdg_src/WSDG_chapter_dissection.xml
@@ -908,7 +908,7 @@ static gint *ett[] =
You also cannot assume that a TCP packet contains only one application layer message
and that the message header is at the start of your TCP payload.
More than one messages can be transmitted in one TCP packet,
- so that a message can start at an abitrary position.
+ so that a message can start at an arbitrary position.
</para>
<para>
@@ -963,7 +963,7 @@ static guint get_foo_message_len(packet_info *pinfo, tvbuff_t *tvb, int offset)
<para>
The parameters <parameter>tvb</parameter>, <parameter>pinfo</parameter> and <parameter>tree</parameter>
are just handed over to <function>tcp_dissect_pdus()</function>.
- The 4th parameter is a flag to indicate if the data should be reassebled or not. This could be set
+ The 4th parameter is a flag to indicate if the data should be reassembled or not. This could be set
according to a dissector preference as well.
Parameter 5 indicates how much data has at least to be available to be able to determine the length
of the foo message.
@@ -982,7 +982,7 @@ static guint get_foo_message_len(packet_info *pinfo, tvbuff_t *tvb, int offset)
<para>
A tap is basically a way of allowing other items to see whats happening as
a protocol is dissected. A tap is registered with the main program, and
- then called on each dissection. Some arbritary protocol specific data
+ then called on each dissection. Some arbitrary protocol specific data
is provided with the routine that can be used.
</para>
<para>
@@ -999,7 +999,7 @@ static int foo_tap = -1;
struct FooTap {
gint packet_type;
- gint priorty;
+ gint priority;
...
};
...