aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-pnrp.c
AgeCommit message (Collapse)AuthorFilesLines
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-1/+1
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-12-06Fix various typos and spelling errors.Bill Meier1-2/+2
svn path=/trunk/; revision=35126
2010-09-24(Refining the regexp...) Replace blurbs that match the name (case ↵Jeff Morriss1-1/+1
insensitive) with NULL. svn path=/trunk/; revision=34230
2010-09-21As suggested by Kovarththanan Rajaratnam in ↵Jeff Morriss1-103/+103
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3548 : Clean up hf fields some more: mostly removing leading and trailing spaces from names and blurbs. svn path=/trunk/; revision=34165
2010-01-29A few updates:Bill Meier1-21/+15
- Remove not needed #includes: stdio, stdlib, string & prefs; - Fix a few typos in text strings; - use 'tvb_reported_length() > 0' rather than '... != 0' in several cases; (tvb_reported_length can return -1); - if (!initialized) {...} not required in proto_reg_handoff..; - col_clear(...) before col_add_fstr(...) not req'd; - Add a comment about whether tvb_length() rather than tvb_reported_length should be used in one case. svn path=/trunk/; revision=31734
2010-01-29From Jan Gerbecks via bug 4440:Stig Bjørlykke1-0/+1364
Added support for PNRP. From me: Fixed printing of Classifier (unicode). Put some space in comments. svn path=/trunk/; revision=31732