aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aodv.c
AgeCommit message (Collapse)AuthorFilesLines
2009-07-07Changed flags_set_truth -> tfs_set_notsetStig Bjørlykke1-8/+8
svn path=/trunk/; revision=28989
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-16/+16
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-04-22Clean up some 64-bit issues.Guy Harris1-21/+15
svn path=/trunk/; revision=28117
2009-03-16Removed some non-ASCII characters.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=27736
2007-10-15Fix col_add_str args; (I think this is correct)Bill Meier1-1/+1
svn path=/trunk/; revision=23194
2007-10-15Implement some of the minor possible speed improvment patches.Anders Broman1-1/+1
svn path=/trunk/; revision=23192
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-3/+3
svn path=/trunk/; revision=18196
2005-09-11Replace tvb_memcpy() calls that extract IPv4 addresses into a guint32,Guy Harris1-13/+12
and that extract IPv6 addresses into a "struct e_in6_addr", with tvb_get_ipv4() and tvb_get_ipv6() calls - except for some that we remove, by using proto_tree_add_item(), rather than replacing. Have epan/tvbuff.h include epan/ipv6-utils.h, to define "struct e_in6_addr" (not necessary to declare the tvbuff routines, but including it there means "struct e_in6_addr" is guaranteed to be defined before those declarations, so we don't get compiler complaints if we define it *after* those declarations). svn path=/trunk/; revision=15758
2004-11-21From Shingo Horisawa:Guy Harris1-28/+50
add the "unknown sequence number" flag; fix dissection of unreachable destinations in RERR messages; fix prefix size in draft-perkins-manet-aodv6-01 RREP messages to be 7 bits, not 5 bits; put the message dissection under the top-level AODV tree rather than at the top level; fix labeling of source IPv6 address in RREP messages. Update the comments at the beginning (AODV is now RFC 3561), and note that RFC 3561 says that, for IPv6, the only change is that the address fields are enlarged. Rename RREQ_DEST and RREQ_GRAT to more fully indicate what they are. Fix the name of the draft in the description of the draft-perkins-manet-aodv6-01 messages. Fix description of Gratuitous RREP flag in RREQ messages. svn path=/trunk/; revision=12562
2004-11-21From Bart Braem: add support for the "destination only" flag.Guy Harris1-0/+15
svn path=/trunk/; revision=12551
2004-08-22Add "tvb_get_ntoh64()" and "tvb_get_letoh64()" routines to fetch 64-bitGuy Harris1-1/+0
integers. Make FT_INT64 and FT_UINT64 add numerical values, rather than byte-array values, to the protocol tree, and add routines to add specified 64-bit integer values to the protocol tree. Use those routines in the RSVP dissector. svn path=/trunk/; revision=11796
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+979
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410