aboutsummaryrefslogtreecommitdiffstats
path: root/epan
AgeCommit message (Expand)AuthorFilesLines
2005-07-25When reassembling a packet, all data, including data withGuy Harris1-14/+41
2005-07-25Break out of an infinite loop. Fixes bugs 296 and 297.Gerald Combs1-5/+11
2005-07-25packet-http.c(484) : warning C4101: 'i' : unreferenced local variableUlf Lamping2-3/+2
2005-07-24Fix indentation.Guy Harris1-1/+1
2005-07-24Fix some typoes.Guy Harris2-147/+243
2005-07-24Fix a typo.Michael Tüxen1-1/+1
2005-07-24Constify to remove a bunch of warnings. Add some casts to squelchGuy Harris28-82/+82
2005-07-24"fragment_add_common()" isn't used outside this file - make it static.Guy Harris1-47/+44
2005-07-24Lars Ruoff:Jörg Mayer1-2/+8
2005-07-24register the dissector by nameLuis Ontanon1-1/+1
2005-07-24some more ep_tvb_get_string updatesRonnie Sahlberg6-57/+28
2005-07-24Autogenerate the sminmpec.c file from iana's enterprise-numbers fileLuis Ontanon5-87/+93657
2005-07-24fix a leak of tap info data by replacing g_strdup with ep_strdupLuis Ontanon1-3/+4
2005-07-24some more dissectors converted to ep_tvb_get_stringRonnie Sahlberg7-36/+17
2005-07-24use ep_alloc instead of statically allocated buffersLuis Ontanon1-2/+6
2005-07-24change g_strdup() calls with ep_strdup calls (fixing a significant leakage of...Luis Ontanon1-16/+15
2005-07-24- change the report_failure dialog for a less painful g_warningLuis Ontanon2-17/+19
2005-07-24convert some uses of tvb_get_string() to ep_tvb_get_string()Ronnie Sahlberg11-59/+24
2005-07-24Replace two calls to tvb_get_string with the new ep_tvb_get_string (this fixe...Luis Ontanon1-31/+2
2005-07-24addRonnie Sahlberg2-0/+37
2005-07-24move the stats_tree tap into the http dissector (not anymore in the plugin)Luis Ontanon1-73/+244
2005-07-24I believe we should use DISSECTOR_ASSERT instead of g_assert.Luis Ontanon1-11/+7
2005-07-24add some utility functions that use ep_alloc instead of g_malloc.Luis Ontanon2-0/+71
2005-07-23More 'char*' -> 'const char*' changes to fix warnings.Jörg Mayer23-61/+63
2005-07-23Some more 'char*' -> 'const char*' changesJörg Mayer2-2/+2
2005-07-23Add includes to fix warnings of typeJörg Mayer2-0/+2
2005-07-23Move declaration of sttype_register_* functions fromJörg Mayer2-7/+7
2005-07-23Move declaration of void ftype_register_* to ftypes-int.h.Jörg Mayer3-15/+15
2005-07-23Fix lots of warnings of type:Jörg Mayer1-1/+1
2005-07-23avoid a crash when tree is nullLuis Ontanon1-1/+2
2005-07-23ICMP MPLS updates and a new preference option fromRonnie Sahlberg1-7/+32
2005-07-23we no longer need to g_free() teh string returned by dissect_rpc_string.Ronnie Sahlberg5-51/+1
2005-07-22include stdlib instead of malloc.h Ronnie Sahlberg1-1/+1
2005-07-22recode tvb_memdup() into more efficient emem fucntions.Ronnie Sahlberg1-25/+17
2005-07-22No longer neededAnders Broman2-996/+0
2005-07-22From Martin Mathieson:Anders Broman2-2/+1829
2005-07-22recode the tvb_memdup() to use emem calls.Ronnie Sahlberg1-19/+3
2005-07-22remove a redundant tvb_memdup() and fix a potential buffer overflow at the ...Ronnie Sahlberg1-4/+2
2005-07-22replace one tvb_memdup() with a tvb_memcpy() using an automatically freed eme...Ronnie Sahlberg1-3/+4
2005-07-22Fix some warnings (and one of my previous 'fixes')Jörg Mayer1-8/+8
2005-07-22Set svn:keywords and svn:eol-styleJörg Mayer2-2/+2
2005-07-22Fix a potential memory leak.Gerald Combs1-1/+1
2005-07-22From Graham BloiceAnders Broman1-247/+346
2005-07-22From Maynard, Chris.Anders Broman1-24/+27
2005-07-22Use NULL intead of "" in all calls to packet-gsm_a.cAnders Broman1-12/+12
2005-07-22Add ep_init_chunk.Anders Broman1-0/+1
2005-07-22convert all other nasty "rotating static array" from to_str.c and make them u...Ronnie Sahlberg1-155/+74
2005-07-22More 'char*' -> 'const char*' warning fixesJörg Mayer1-14/+14
2005-07-22Beginning of radiotap's header dissectionJörg Mayer1-15/+41
2005-07-22EMEM : a simple and FAST api to allocate memory that will be automatically fr...Ronnie Sahlberg5-11/+200