aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2006-03-13fix bug #803: sync pipe on Win32 wasn't set to binary mode, so error message ↵Ulf Lamping5-76/+104
transport failed between Ethereal and dumpcap. I've also changed the way the secondary error message is transported from former "header message 0 secondary 0" to "header header message 0 header secondary 0" as that might be a bit more clearer, and I'll need it for further development anyway. I was using this while debugging and not recognizing the real problem - for about four hours :-(. I'll need this feature when doing the interface (and link layer type) browsing later (transferring this data from dumpcap to Ethereal) to get a full blown privilege seperation. svn path=/trunk/; revision=17608
2006-03-12This time, should be the good one!Luis Ontanon2-1/+2
svn path=/trunk/; revision=17607
2006-03-12is that what you meant?Ulf Lamping1-1/+1
svn path=/trunk/; revision=17606
2006-03-12Let's see if at the third attempt I get it right...Luis Ontanon1-1/+1
svn path=/trunk/; revision=17605
2006-03-12Let's try again!Luis Ontanon1-1/+0
svn path=/trunk/; revision=17604
2006-03-12I Hope this worksLuis Ontanon2-1/+7
svn path=/trunk/; revision=17603
2006-03-12Move make-init-lua.pl and family to plugins/lua and have init.lua installed ↵Luis Ontanon3-1/+189
in the right place svn path=/trunk/; revision=17602
2006-03-12Assure that pinfo is a valid pointer. Related to Coverity CID 112Jaap Keuter1-2/+2
svn path=/trunk/; revision=17601
2006-03-12Move init.lua and family to plugins/luaLuis Ontanon4-164/+1
svn path=/trunk/; revision=17600
2006-03-12reenable TreeItem,Luis Ontanon2-10/+16
shiftXXX() was broken svn path=/trunk/; revision=17599
2006-03-12Protocols are now invoked.Luis Ontanon1-9/+8
svn path=/trunk/; revision=17598
2006-03-11revert back to svn 17587Ronnie Sahlberg1-18/+59
svn path=/trunk/; revision=17597
2006-03-11oops removed one check too manyRonnie Sahlberg1-0/+3
when we lookup grandparent, check that we actually have a grandparent. svn path=/trunk/; revision=17596
2006-03-11Remove debug code...Luis Ontanon1-10/+0
svn path=/trunk/; revision=17595
2006-03-11Protocols register OK.Luis Ontanon4-51/+82
svn path=/trunk/; revision=17594
2006-03-11mark parser error messages as Ethereal generatedUlf Lamping1-2/+4
svn path=/trunk/; revision=17593
2006-03-11add dumpcap to the list of new featuresUlf Lamping1-0/+10
svn path=/trunk/; revision=17592
2006-03-11Close the files after reading!Luis Ontanon2-1/+4
svn path=/trunk/; revision=17591
2006-03-11use se_trees instead of GHashTables,Luis Ontanon3-88/+160
rename binding into assoc(iation) which is the AOC name. move the definition of sccp_assoc_t to packet-sccp.h so that information regarding sccp associations it can be used by user protocols svn path=/trunk/; revision=17590
2006-03-11remove some redundant calls and checks and pass the required pointers as ↵Ronnie Sahlberg1-59/+15
parameters instead to make it slightly faster svn path=/trunk/; revision=17589
2006-03-11document the char *name parameter to the create tree functionsRonnie Sahlberg1-4/+9
svn path=/trunk/; revision=17588
2006-03-11give se_trees names so that it is easier to debug and to log how often ↵Ronnie Sahlberg7-21/+24
certain trees are accessed svn path=/trunk/; revision=17587
2006-03-11remove some unusued parametersRonnie Sahlberg1-136/+139
svn path=/trunk/; revision=17586
2006-03-11Avoid a coverity false positive (CID 38) from being considered.Luis Ontanon1-0/+3
svn path=/trunk/; revision=17585
2006-03-11 Mark coverity CID 117 as a false positive.Luis Ontanon1-0/+2
Lex code is often hard for humans to understand... neither of the error conditions found would be happening... One was marked as error because coverity does not understand that yyterminate() breaks execution. The other marked as an error because coverity is not able to figure out that the error appears in an actions against two different rules that will not ever match toghether. svn path=/trunk/; revision=17584
2006-03-11second try to fix the bugRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=17583
2006-03-11the code forgot to update offset *offset++ is not the same as offset++ :-)Ronnie Sahlberg1-1/+1
svn path=/trunk/; revision=17582
2006-03-11Mark coverity's CID 105 as a false positive.Luis Ontanon1-0/+2
(The macro GET_MSG_TYPE does propper bounds checking but coverity doesn't consider it (may not be able to resolve the ?: operator) ) svn path=/trunk/; revision=17581
2006-03-11Remove an entire horde of off-by-one errors pointed out by Coverity's CID: 83Luis Ontanon1-5/+5
(Coverity finds just one at a time...) svn path=/trunk/; revision=17580
2006-03-11replace GHashTables with se_treesLuis Ontanon1-35/+21
svn path=/trunk/; revision=17579
2006-03-11include emem.hRonnie Sahlberg1-0/+1
otherwise ep_strdup() defaults to int which will break if pointers are bigger than integers. this should fix bugs 797 802 805 806 svn path=/trunk/; revision=17578
2006-03-11... and don't forget to include emem.h!Ulf Lamping1-0/+1
svn path=/trunk/; revision=17577
2006-03-11replace g_malloc and alike by their corresponding ep_ functionsUlf Lamping2-14/+7
svn path=/trunk/; revision=17576
2006-03-11forgot to paint a node causing massively unbalanced treeRonnie Sahlberg1-28/+27
svn path=/trunk/; revision=17575
2006-03-11propset...Jörg Mayer2-206/+206
svn path=/trunk/; revision=17574
2006-03-11dont declare variables in the middle of a code block. many compilers do ↵Ronnie Sahlberg3-56/+56
not like that. svn path=/trunk/; revision=17573
2006-03-10Add a function that returns an unique guint32 for each dpc.Luis Ontanon2-1/+17
svn path=/trunk/; revision=17572
2006-03-10fix coverity CIDs 113 and 114.Luis Ontanon5-180/+246
while at it change the h248 context analysis to use se_trees instead of GHashTables svn path=/trunk/; revision=17571
2006-03-10avoid doing the lookup of a key twice while inserting items to a tree with ↵Luis Ontanon1-5/+85
an array key. svn path=/trunk/; revision=17570
2006-03-10various code cleanup (e.g. remove unrequired length parameter), should also ↵Ulf Lamping1-80/+73
fix coverity id 126 svn path=/trunk/; revision=17569
2006-03-10few warnings from GUID handling avoidedTomas Kukosa1-5/+6
svn path=/trunk/; revision=17568
2006-03-10add guid-utils.h to Makefile.commonTomas Kukosa2-4/+1
remove unused variables from tvbuff.c svn path=/trunk/; revision=17567
2006-03-10new FT_GUID handling - big/little endian supportedTomas Kukosa14-145/+281
svn path=/trunk/; revision=17566
2006-03-10Fix CID 6 - Unused code.Anders Broman1-4/+1
svn path=/trunk/; revision=17565
2006-03-10fix missing return bug from didierRonnie Sahlberg1-1/+1
svn path=/trunk/; revision=17564
2006-03-10make using canaries optionalRonnie Sahlberg1-3/+49
default to use-canaries since that is the current behaviour svn path=/trunk/; revision=17563
2006-03-10add a define that controls explicitely whether we want to use guard pages ↵Ronnie Sahlberg1-11/+18
(if available) or not. let it default to want-guard-pages since the existing code does that. svn path=/trunk/; revision=17562
2006-03-10Remove a linebreak to emphasise the guid structure (doesn't changeTim Potter1-2/+1
the byte ordering). svn path=/trunk/; revision=17561
2006-03-09Fix Coverity CID 129: initialize a couple of variables.Gerald Combs1-2/+2
svn path=/trunk/; revision=17560
2006-03-09debugging helper: if (for whatever reason) the message from dumpcap was ↵Ulf Lamping1-0/+5
invalid, try to print it. This was already helpful e.g. as a GLib warning was confusing the pipe handling svn path=/trunk/; revision=17559