aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rx.c
Commit message (Collapse)AuthorAgeFilesLines
* Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam2009-08-161-1/+1
| | | | svn path=/trunk/; revision=29446
* Don't guard col_clear with col_checkKovarththanan Rajaratnam2009-08-091-2/+1
| | | | svn path=/trunk/; revision=29344
* Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam2009-08-091-2/+1
| | | | svn path=/trunk/; revision=29340
* From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke2009-06-181-33/+33
| | | | | | | | | | | | (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
* From Artem Tamazov (bug 3472):Stig Bjørlykke2009-05-191-0/+3
| | | | | | Save/Restore pinfo->private_data when used. svn path=/trunk/; revision=28412
* Set rxinfo.epoch from the epoch, and then assign it to ts.secs; thatGuy Harris2008-03-161-10/+6
| | | | | | | | | avoids doing a narrowing case - which, in this case, is safe (rxinfo.epoch is 32 bits, and the value assigned to it is 32 bits, so it's not as if it'd ever be wider than 32 bits even if ts.secs is wider than 32 bits), but you might still have to think about it. svn path=/trunk/; revision=24658
* Added a cast to make it compile.Stig Bjørlykke2008-03-161-1/+1
| | | | svn path=/trunk/; revision=24657
* From Chaskiel Grundman via ↵Jeff Morriss2008-03-161-0/+2
| | | | | | http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1556: patch to track afs requests by rx connection id svn path=/trunk/; revision=24651
* Make RX a new style dissector: return 0 if there isn't at least 28 bytes of ↵Jeff Morriss2007-04-021-2/+12
| | | | | | message or if it receives an unknown Type. Add a check of tvb length to README.developer's cut-n-paste dissector code. svn path=/trunk/; revision=21300
* change a whole bunch of ethereal into wiresharkRonnie Sahlberg2006-05-211-2/+2
| | | | svn path=/trunk/; revision=18196
* Add a couple of tvb_ensure_bytes_exist() calls to fix bug 12.Gerald Combs2005-04-131-0/+1
| | | | svn path=/trunk/; revision=14064
* Add a link to an RX spec, and ask whether the Epoch really should beGuy Harris2005-02-281-0/+9
| | | | | | dissected as a UN*X time. svn path=/trunk/; revision=13551
* From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that anGuy Harris2004-08-061-1/+1
| | | | | | | include of <resolv.h> in any system header file gets the system <resolv.h> (needed for builds on Tru64 with GTK+ 1.2[.x]). svn path=/trunk/; revision=11615
* Move dissectors to epan/dissectors directory.Gilbert Ramirez2004-07-181-0/+781
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