aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bfcp.c
AgeCommit message (Collapse)AuthorFilesLines
2013-10-13whitespace fixes; mostly: remove trailing blanksBill Meier1-2/+2
svn path=/trunk/; revision=52591
2013-09-09expert_add_info_format_text -> expert_add_info_formatMichael Mann1-1/+1
svn path=/trunk/; revision=51852
2013-08-05Keep result of [new_]register_dissector in some dissectors. [2 of x]Jakub Zawadzki1-4/+3
(don't create new dissector handle if we can use already existing one) svn path=/trunk/; revision=51159
2013-07-03Fix some warnings from fix-encoding-args tools.Alexis La Goutte1-7/+7
svn path=/trunk/; revision=50367
2013-07-03Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=50345
2013-05-25Batch of filterable expert_infos.Michael Mann1-1/+11
svn path=/trunk/; revision=49581
2013-03-29Rename value string (and similar) functions to use a consistent pattern. ThisEvan Huus1-2/+2
was done using textual search+replace, not anything syntax-aware, so presumably it got most comments as well (except where there were typos). Use a consistent coding style, and make proper use of the WS_DLL_* defines. Group the functions appropriately in the header. I ended up getting rid of most of the explanatory comments since many of them duplicated what was in the value_string.c file (and were out of sync with the recent updates I made to those in r48633). Presumably most of the comments should be in the .h file not the .c file, but there's enough churn ahead that it's not worth fixing yet. Part of https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8467 svn path=/trunk/; revision=48634
2013-03-14[-Wmissing-prototypes]Anders Broman1-2/+3
explicit casts. svn path=/trunk/; revision=48293
2012-11-24Set up BFCP conversationsAnders Broman1-29/+43
svn path=/trunk/; revision=46165
2012-11-23Error: the name for hf_bfcp_queue_pos ("bfcp.queue_pos") has trailing space ↵Anders Broman1-1/+1
in packet-bfcp.c svn path=/trunk/; revision=46157
2012-11-23Update dissetion of the header flags.Anders Broman1-5/+37
svn path=/trunk/; revision=46156
2012-11-23Add dissection of attributes.Anders Broman1-89/+387
svn path=/trunk/; revision=46154
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45017
2012-09-10Initial commit to support yet another method of passing data between dissectors.Jakub Zawadzki1-1/+1
Add new parameter 'data' to heur_dissector_t and new_dissector_t, for now it's always NULL svn path=/trunk/; revision=44860
2012-07-28Fix VC code analaysis warning about definition of variable in innerMartin Mathieson1-1/+0
scope. svn path=/trunk/; revision=44094
2012-07-24(Minor) Localize a static variable;Bill Meier1-1/+2
svn path=/trunk/; revision=43973
2012-06-12Fix: code under 'if(tree)' (in)directly calls ↵Bill Meier1-55/+56
sub-dissector/col_...()/expert...() fcns svn path=/trunk/; revision=43226
2012-04-23Minor cleanup:Bill Meier1-85/+87
- Add svn:keywords and svn;eol-style properties - Move proto_reg_handoff...() to the end of the file as per convention; - Use match_strval() instead of match_strval_idx() since idx not used; - Use consistent indentation & style. svn path=/trunk/; revision=42216
2012-04-20From Patrick White via ↵pascal1-21/+144
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7061 : Add UDP to BFCP dissector and dissect new primitives and attibutes From me: add an expert info in case of invalid payload length to avoid a potential infinite loop svn path=/trunk/; revision=42160
2012-04-11From Nitinkumar Yemul:pascal1-0/+234
Binary Floor Control Protocol (BFCP) dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7061 svn path=/trunk/; revision=42028