aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tvbparse.h
AgeCommit message (Collapse)AuthorFilesLines
2016-06-14tvbparse: change g_hash_table to wmem_map.Dario Lombardo1-1/+1
Change-Id: I245595051617f6d6333314240825a526adf19339 Reviewed-on: https://code.wireshark.org/review/15244 Reviewed-by: Michael Mann <mmann78@netscape.net>
2014-12-30Tabs are not necessarily set every 4 spaces.Guy Harris1-121/+121
Use spaces, not tabs, for indentation; that makes the code's layout indepencent of tab settings, which might be every *8* spaces. Change-Id: I69891b6424a668f1ee0ca80cc622b8cb0ed8967e Reviewed-on: https://code.wireshark.org/review/6132 Reviewed-by: Guy Harris <guy@alum.mit.edu>
2014-03-31Continue to remove $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^\* \$Id\$/,+1 d') (no space before star) Change-Id: I318968db2b8512ba1303b5fc5c624c66441658f0 Reviewed-on: https://code.wireshark.org/review/879 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2013-03-01Export libwireshark symbols using WS_DLL_PUBLIC defineBalint Reczey1-0/+23
Also remove old WS_VAR_IMPORT define and related Makefile magic everywhere in the project. svn path=/trunk/; revision=47992
2012-06-28Update FSF address - part II.Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=43538
2010-05-06Cleanup and export the TVB parser.Jaap Keuter1-44/+41
svn path=/trunk/; revision=32689
2010-04-03(Trivial): indentation & whitespace cleanup.Bill Meier1-39/+39
svn path=/trunk/; revision=32366
2010-04-03 From Yaniv Kaul: constify parametersBill Meier1-23/+23
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4422 From me: Fix a number of instances where the function prototype or the function definition wasn't changed so there was a mismatch thus causing Windows (but not gcc) compilation errors. svn path=/trunk/; revision=32365
2010-04-02Revert SVN #32360 until Windows compilation errors corrected.Bill Meier1-22/+22
svn path=/trunk/; revision=32361
2010-04-02From Yaniv Kaul: constify parametersBill Meier1-22/+22
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4422 svn path=/trunk/; revision=32360
2010-03-22(Trivial) Fix a typo.Bill Meier1-1/+1
svn path=/trunk/; revision=32271
2008-08-05luis.ontanon@gmail.com => luis@ontanon.orgLuis Ontanon1-1/+1
svn path=/trunk/; revision=25937
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-02-09Add heuristic dissection of XMLLuis Ontanon1-1/+12
svn path=/trunk/; revision=17228
2005-12-28Change tvbparse's engine to use callbacks instead of a big switch.Luis Ontanon1-28/+138
add some primitives. svn path=/trunk/; revision=16916
2005-09-29add a debugging function that creates a tree exploding the parsed elementsLuis Ontanon1-0/+3
svn path=/trunk/; revision=16054
2005-09-28tvbparse.[ch]:Luis Ontanon1-1/+18
- add a tvbparse_handle() (for recursion) - change tvbparse_until() to allow more control when parsing - make the wanted control an union so that different types of data can be used packet-xml.c: - change the parser definition to match changes to tvbparse_until() svn path=/trunk/; revision=16045
2005-09-27in tvbparse:Luis Ontanon1-3/+3
- tvbparse_some now handles 0 items. - added accessors for a tt's offset and remaining length. in packet-xml: - min_len=0 for tvbparse_chars() is soon going to mean zero instead of 1 change the 0s to 1s. - attribute names can have ':' even if it's namespaces isn't managed yet. - split the xml grammar in more elements so It can be actually read by a human being. svn path=/trunk/; revision=16031
2005-09-08fix the svn keywords and some comments that were out of dateLuis Ontanon1-15/+20
svn path=/trunk/; revision=15727
2005-09-08an API for "bufferless" parsing of text tvbsLuis Ontanon1-0/+329
svn path=/trunk/; revision=15726