aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-mpeg-pat.c
AgeCommit message (Collapse)AuthorFilesLines
2013-03-14Change "4 space tabs" indentation to use "4 spaces" indentation.Bill Meier1-98/+97
Also: - remove some unneeded initializers; - remove several unneeded 'col_clear()' calls; - guint8 --> guint to prevent a possible overflow; - reformat for style in some cases. svn path=/trunk/; revision=48297
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2012-09-03unify the handling for all DVB/MPEG sectionsMartin Kaiser1-4/+4
don't initialize pointer where it's not required remove unnecessary 'if (tree)' checks svn path=/trunk/; revision=44762
2012-09-03add editor modelines (that match the current indentation style)Martin Kaiser1-0/+13
svn path=/trunk/; revision=44755
2012-07-24MPEG PAT: set the tree item's length == number of bytes dissectedMartin Kaiser1-1/+2
don't simply assume the PAT continues until the end of the input tvb this is similar to packet_dvb_ait.c I'll change this for other tables shortly svn path=/trunk/; revision=43969
2012-06-12Fix: code under 'if(tree)' (in)directly calls ↵Bill Meier1-3/+0
sub-dissector/col_...()/expert...() fcns svn path=/trunk/; revision=43226
2012-03-16Make several functions static; remove trailing commas and white space.Jeff Morriss1-8/+8
svn path=/trunk/; revision=41606
2012-03-13From Weston Schmidt:Anders Broman1-4/+5
Update packet-mpeg-sect to support CRCs & simpler header processing for subdissectors. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6941 svn path=/trunk/; revision=41523
2012-02-11Use the length-on-the-network, not the captured length, when decidingGuy Harris1-1/+1
how far to dissect. svn path=/trunk/; revision=40978
2012-02-11mpeg_pat.cur_next_ind looks like a Boolean; make it one. That alsoGuy Harris1-4/+3
fixes checkapi warnings about its value_string not being properly terminated (by replacing it with a true_false_string). svn path=/trunk/; revision=40975
2012-02-11From Guy Martin:Anders Broman1-0/+205
Dissector for MPEG Program Association Table (PAT) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6821 svn path=/trunk/; revision=40971