aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-12-07As requested in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7735 :Jeff Morriss1-41/+41
Make the Source and Destination hf names indicate that they are for the Source and Destination fields so that, for example, their column names are descriptive. svn path=/trunk/; revision=46461
2012-12-07removed a last if (tree) check in dissect_ftpdata()Martin Kaiser1-21/+19
svn path=/trunk/; revision=46460
2012-12-07EPRT parameters are mandatory, flag up an error if they're missingMartin Kaiser1-52/+52
remove if (linelen!=0) check svn path=/trunk/; revision=46459
2012-12-07Use a different border color on OS X.Gerald Combs2-0/+8
svn path=/trunk/; revision=46458
2012-12-07remove some more if (tree) checksMartin Kaiser1-23/+17
svn path=/trunk/; revision=46457
2012-12-07at one place, offset was incremented depending on if (tree)Martin Kaiser1-12/+10
this created a bug when offset was used later on remove the if (tree) check svn path=/trunk/; revision=46456
2012-12-07dissect_ftp() start at the beginning of the tvbMartin Kaiser1-11/+10
make this clear by not using a variable offset which is always 0 svn path=/trunk/; revision=46455
2012-12-07remove some more unnecessary if (tree) checksMartin Kaiser1-47/+43
svn path=/trunk/; revision=46454
2012-12-07Set the height of the resize and apply buttons. Simplify some geometry.Gerald Combs1-2/+4
svn path=/trunk/; revision=46453
2012-12-07remove some unnecessary if (tree) checks in the ftp dissectorMartin Kaiser1-41/+25
svn path=/trunk/; revision=46452
2012-12-07Properly resize the bookmark button so that the image centers properly.Gerald Combs2-22/+16
Adjust CSS. svn path=/trunk/; revision=46451
2012-12-07mention mpeg2 ts in the list of supported file formatsMartin Kaiser1-0/+3
svn path=/trunk/; revision=46450
2012-12-07Add a context menu to the packet list and fill in theGerald Combs7-134/+244
apply/match-related actions. Have matchSelectedFilter figure out our filter strings, which lets us remove duplicate code in the apply/match action slots. Remove some leftover code from an experiment. Adjust the temporary message colors in the status bar and label stack. Add a NULL check to construct_match_selected_string. svn path=/trunk/; revision=46449
2012-12-07Fix trivial typo.Chris Maynard1-1/+1
svn path=/trunk/; revision=46448
2012-12-07Bump revission.Anders Broman1-1/+1
svn path=/trunk/; revision=46447
2012-12-07Move a lot of common fuzz-test and randpkt-test code to its own fileGerald Combs4-169/+152
(test-common.sh). Add build information to the error output as suggested in http://www.wireshark.org/lists/wireshark-dev/201212/msg00037.html svn path=/trunk/; revision=46446
2012-12-07From hannes:Anders Broman1-1/+4
'Fix for displaying the payload of the first chunk correctly. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8068 svn path=/trunk/; revision=46445
2012-12-07General cleanup:Bill Meier1-1243/+1246
- Don't call col...() & expert...() under 'if (tree)'; - Localize some variables; Remove uneeded initializers; - Remove incorret _U_ from certain function parameters; - Reformat long-lines; Do whitespace changes; - Misc. svn path=/trunk/; revision=46444
2012-12-07Correct dissection of RNC ID in two places.Anders Broman1-9/+13
svn path=/trunk/; revision=46443
2012-12-07Don't leak a string.Michael Tüxen1-0/+1
svn path=/trunk/; revision=46442
2012-12-07Fix Bug reported by Anders Broman concerning the capture filter.Irene Rüngeler1-1/+5
svn path=/trunk/; revision=46440
2012-12-07 Bug 3974 - wrong decoding of gtp.target identification.Anders Broman1-17/+41
Use the IE description from 3GPP TS 29.060 version 10.4.0 Release 10. - Fix bugs with RAI and LAC in other parts of the code. svn path=/trunk/; revision=46439
2012-12-07Added deltaRevocationList.Stig Bjørlykke4-8/+11
svn path=/trunk/; revision=46438
2012-12-07Make it easier to make full extended value string if required.Anders Broman1-257/+398
svn path=/trunk/; revision=46437
2012-12-07From hannes:Anders Broman3-15/+230
Enable the plugin to detect and reassemble chunked UA messages for displaying them correctly. From me: - Partly applied by hand. - move hf and ett asignments inseide the register routine as per convention. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8068 svn path=/trunk/; revision=46436
2012-12-07Use 16x16 icons for small toolbars as well as menus.Gerald Combs1-0/+7
svn path=/trunk/; revision=46435
2012-12-07Implement the items under "Edit→Copy", "Analyze→Apply as Filter" andGerald Combs16-78/+770
"Analyze→Prepare a Filter". Add a context menu to the protocol tree and fill in the items we've implemented so far. Add an "applyAllPreferences" method and corresponding "preferencesUpdated" signal to wsApp. Use it to set the maximum display filter combo count. Move the packet filtering code from the display filter edit to the main window (which makes more sense and matches what we're doing in the GTK+ version and gets rid of more global cfile references). Try to center the display filter edit button images. Use a different "close" button in the main toolbar. It looks better but is still wrong (on OS X at least). svn path=/trunk/; revision=46434
2012-12-07Fix an apparent copy/paste error.Gerald Combs1-1/+1
svn path=/trunk/; revision=46433
2012-12-06Revert previous change - maybe we shouldn't enable -Wshadow with cruftyGuy Harris1-1/+1
old GCCs that complain about that. svn path=/trunk/; revision=46432
2012-12-06Squelch some -Wshadow warnings (inappropriate warnings - they're justGuy Harris1-1/+1
names in a prototype declaration - but maybe that's what you get with older compilers). svn path=/trunk/; revision=46431
2012-12-06Revert SVN #46429 again (for now);Bill Meier1-1/+4
It appears that the compiler on the OSX-10.5-x86 buildbot must be pretty old. All the other *nix buildbot compilers do not check the dummy param names used in the definition of 'xxx' below to see if they are shadowing anything. void foo(tvbuff_t tvb, ...) { 'void (*xxx)(tvbuff_t tvb, ....) = NULL;' ... } I do seem to remember reading that gcc once had this issue but was fixed eventually. svn path=/trunk/; revision=46430
2012-12-06Enable [-Wshadow] as default for *nix compilers] (C only): 2nd try.Bill Meier1-4/+1
svn path=/trunk/; revision=46429
2012-12-06Fix two more incorrect s/link/linkr/ done by me in SVN #46426.Bill Meier1-2/+2
svn path=/trunk/; revision=46428
2012-12-06Fix compile error; Bill Meier1-1/+1
svn path=/trunk/; revision=46427
2012-12-06Fix [-Wshadow] warnings.Bill Meier18-86/+86
svn path=/trunk/; revision=46426
2012-12-06Fix "MPLS payload starting with valid-looking ethernet address dissected twice".Bill Meier1-4/+2
Fixes Bug #8043 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8043 svn path=/trunk/; revision=46420
2012-12-06As requested in https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7735 :Jeff Morriss1-273/+306
Finish splitting source and destination address fields into their own hf's. Also remove a couple unused hf's, remove (mostly 4-space) tabs, and reindent some. svn path=/trunk/; revision=46418
2012-12-06Fix inifite loop in the R3 dissector reported inJeff Morriss1-5/+13
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8040 : If the alarm length is 0, raise an expert_info and break out of the loop. svn path=/trunk/; revision=46415
2012-12-05Add the new toolbar icons.Gerald Combs1-0/+224
svn path=/trunk/; revision=46414
2012-12-05Create 16x16 and 24x24 versions of the document icon with a contrastingGerald Combs9-129/+59
border. Add them as pixbufs to ui/gtk/toolbar_icons.h and use them to replace the file icon XPM in stock_icons.c. Add modelines. svn path=/trunk/; revision=46413
2012-12-05Make it more obvious that we're locking and unlocking.Gerald Combs1-2/+1
svn path=/trunk/; revision=46412
2012-12-05Choose direction properly if launching graph based upon channel ofMartin Mathieson1-1/+2
selected frame. svn path=/trunk/; revision=46411
2012-12-05Add more missing #includes.Gerald Combs2-0/+7
svn path=/trunk/; revision=46410
2012-12-05Fix some C++ abuses that Guy found via LLVM.Gerald Combs6-6/+15
svn path=/trunk/; revision=46408
2012-12-05 Found non-ASCII characters on line 7323 of packet-isup.cAnders Broman1-1/+1
svn path=/trunk/; revision=46407
2012-12-05unused variable 'length'Anders Broman1-1/+0
svn path=/trunk/; revision=46406
2012-12-05Dissect more Japanese ISUP parameters.Anders Broman1-17/+307
svn path=/trunk/; revision=46405
2012-12-05Fix another instance of a variable/parameter name "shadowing" a library ↵Bill Meier2-6/+6
function name; (At least some (gcc ?) compilers give a "shadow" warning for these). svn path=/trunk/; revision=46404
2012-12-05Whitespace changesJörg Mayer1-3/+3
svn path=/trunk/; revision=46403
2012-12-05Fix numerous instances of a variable/parameter name "shadowing" a library ↵Bill Meier86-572/+573
function name; (At least some (gcc ?) compilers give a "shadow" warning for these). svn path=/trunk/; revision=46402