aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-08-08Have (almost) all preferences use the generic preferences API (per ↵Michael Mann10-1262/+1215
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7402). This cleaned up a lot of hardcoded code and allows breaking up the prefs structure (or at least prevent it from growing too large) if desired. Bugfixed problems mentioned in http://www.wireshark.org/lists/wireshark-dev/201208/msg00001.html Column preferences now support default '#' character svn path=/trunk/; revision=44348
2012-08-08From Jacob Nordgren and Rishie Sharma:Anders Broman5-0/+115
Add CRC11 algorithms svn path=/trunk/; revision=44346
2012-08-08Fix a couple of problems with the common zooming function.Martin Mathieson1-3/+10
svn path=/trunk/; revision=44341
2012-08-08Remove cosshair cursorAnders Broman1-60/+3
svn path=/trunk/; revision=44340
2012-08-08Add -A as command line option to wireshark and tshark.Irene Rüngeler2-5/+26
svn path=/trunk/; revision=44339
2012-08-08Make it possible to merge libpcap files with different encapsulation types ↵Anders Broman2-13/+116
by making the output file a pcapng file and construkting SHB and IDB svn path=/trunk/; revision=44338
2012-08-08Make Ubuntu buildbot happy.Irene Rüngeler1-0/+2
svn path=/trunk/; revision=44337
2012-08-08Enhance radiotap dissectorAlexis La Goutte1-791/+794
* Reorder code ! Match with Wireshark "Rules" (put in top value_string and static hf_..., in bottom proto_register_radiotap...) svn path=/trunk/; revision=44336
2012-08-08Use list view instead of notebooks to display compile results.Irene Rüngeler1-24/+125
svn path=/trunk/; revision=44335
2012-08-08Remove an empty lineJörg Mayer1-1/+0
svn path=/trunk/; revision=44334
2012-08-08Enhance radiotap dissectorAlexis La Goutte2-0/+22
* Display unused/not defined present flags * Add expert info if unused/not defined present flags has not "zero" svn path=/trunk/; revision=44333
2012-08-08Fix:Jörg Mayer1-0/+2
In file included from /home/jmayer/work/wireshark/svn/trunk/epan/addr_resolv.c:131:0: /home/jmayer/work/wireshark/svn/trunk/epan/prefs.h:423:5: error: ‘struct pref_custom_cbs’ declared inside parameter list [-Werror] svn path=/trunk/; revision=44332
2012-08-08Base framework to allow all preferences to be part of generic preferences ↵Michael Mann5-43/+288
API. Implementation will follow, but I wanted the framework in place first. svn path=/trunk/; revision=44331
2012-08-08Add A-MPDU Status Present flagAlexis La Goutte1-0/+9
svn path=/trunk/; revision=44330
2012-08-08From Johannes Berg via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7583Alexis La Goutte3-2/+98
Add radiotap A-MPDU status The new A-MPDU status extension for radiotap was adopted. http://www.radiotap.org/defined-fields/A-MPDU%20status From me Use proto_tree_add_item svn path=/trunk/; revision=44329
2012-08-08Add refresh button, if interfaces are not found.Irene Rüngeler1-1/+27
svn path=/trunk/; revision=44328
2012-08-08As of r44326 everything builds with GDK_DISABLE_DEPRECATEDJörg Mayer1-2/+1
svn path=/trunk/; revision=44327
2012-08-08It handles GDK_DISABLE_DEPRECATEDAnders Broman1-4/+0
svn path=/trunk/; revision=44326
2012-08-08From Michael Mann on -dev:Jeff Morriss5-5/+5
The idl2wrs generated dissectors don't follow the convention of using the filter name registered with the protocol as the start of any display filter name. This patch fixes that. svn path=/trunk/; revision=44325
2012-08-08Use expert infos instead of g_warning when something unexpected is found.Jeff Morriss5-5867/+11741
svn path=/trunk/; revision=44324
2012-08-08Add SVN Id.Jeff Morriss3-0/+6
svn path=/trunk/; revision=44323
2012-08-08Move the pi==NULL test into TRY_TO_FAKE_THIS_REPR.Jeff Morriss1-99/+19
Since the tree will only be NULL here if someone messed up in proto.c and since pi will only be NULL if tree is NULL, assert out if either of them are NULL (don't use DISSECTOR_ASSERT() since such a condition wouldn't be the dissector writer's fault). Use TRY_TO_FAKE_THIS_REPR in ptvcursor_add_text_with_subtree(). We've had TRY_TO_FAKE_THIS_REPR for a long time now, don't wrap it in #if 1. new_field_info() doesn't return NULL so don't check for it returning NULL in ptvcursor_add(). svn path=/trunk/; revision=44322
2012-08-08Use a common function for doing zoom (shared by mouse and keyboard).Martin Mathieson1-73/+26
svn path=/trunk/; revision=44321
2012-08-08Use ep_strbufs instead of trying to track string offsets manuallyGerald Combs1-32/+25
and overflowing a buffer. Fixes a crash in bug 7568 discovered by Laurent Butti. We do the Dance Of The String Offset Pointers in several other places. They should probably be changed to ep_strbufs as well. svn path=/trunk/; revision=44320
2012-08-08Remove Uplink messages from the RlcMacDownlink_t structure (as they are part ↵Pascal Quantin1-37/+16
of the RlcMacUplink_t structure that is also used to call csnStreamDissector function) svn path=/trunk/; revision=44319
2012-08-07Various fixes:Pascal Quantin2-9/+26
- in UM mode, LI size boundary is at 125 bytes (regression introduced in r44292) - define RLC_LI_UPPERLAYER outside of rlc_li_size enum as it is confusing: when set in preferences it means that the dissector will use the variable, 7 bits or 15 bits LI as indicated in the rlc_info struct (so using one of the rlc_li_size enum value); it is not a new LI value - add value_string array for direction - add BCCH channel to UDP framing format - initialize p2p_dir when using UDP framing format svn path=/trunk/; revision=44318
2012-08-07Fix a large loop found by Stefan Cornelius of Red Hat Security ResponseGerald Combs1-7/+13
Team (bug 7603). Display the ACL entry count as decimal instead of hexadecimal. svn path=/trunk/; revision=44317
2012-08-07Do the cross like it is in rlc_lte_graph.c, i.e. by just drawing blackMartin Mathieson1-38/+31
lines, then erasing by re-showing the current pixmap. svn path=/trunk/; revision=44316
2012-08-07Fix a test to avoid the cross leaving a line behind at the top of theMartin Mathieson1-2/+2
graph. svn path=/trunk/; revision=44315
2012-08-07Small status updateJörg Mayer1-3/+3
svn path=/trunk/; revision=44314
2012-08-07Don't add 0.5 to coordinates used for drawing the cross. Was goingMartin Mathieson1-4/+4
beyond the area and leaving artifacts. svn path=/trunk/; revision=44313
2012-08-07Add a sanity check so we don't unnecessarily allocate memory for a Multiple ↵Michael Mann1-18/+25
Service Packet message. Bugfix 7570 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7570) svn path=/trunk/; revision=44312
2012-08-07Redo the cross drawing/erasing.Martin Mathieson1-56/+62
Draw in black, erase by just redrawing the current pixmap. Will apply to tcp_graph.c if/when this gets through the buildbots. svn path=/trunk/; revision=44308
2012-08-07Make sure we have a corresponding 'u' member to RlcMacDownlink_t forGerald Combs1-17/+28
every call to csnStreamDissector. This should fix bug 7561. Based on attachment 8888 from Martin Kaiser. svn path=/trunk/; revision=44307
2012-08-07Fix fuzz failure reported in ↵Jeff Morriss1-12/+21
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7563 : Don't overflow in_fmt->m_vc_index_array: verify that speed is less than or equal to DECHAN_MAX_AUG_INDEX before using it. Also add a comment: there are comments here that indicate that this array should have 5 entries but there are only 4. svn path=/trunk/; revision=44306
2012-08-07lupdate QtShark.proAlexis La Goutte2-152/+164
Updating 'qtshark_de.ts'... Found 72 source text(s) (16 new and 56 already existing) Kept 13 obsolete entries Updating 'qtshark_fr.ts'... Found 72 source text(s) (16 new and 56 already existing) Kept 10 obsolete entries Similar-text heuristic provided 3 translation(s) Also remove $Id$, it is xml file (auto)generated by Qt (lupdate) svn path=/trunk/; revision=44305
2012-08-07Fix Typo Tshark => TSharkAlexis La Goutte1-2/+2
svn path=/trunk/; revision=44304
2012-08-07Apply the change of revision 44103 to QtSharkAlexis La Goutte1-25/+3
( It is link Tshark Help not Wireshark (already in bottom !)) Also remove $Id$, it is Xml file (auto)generated by Qt Design svn path=/trunk/; revision=44303
2012-08-07Make the Ubuntu buildbot happy.Michael Tüxen1-2/+0
svn path=/trunk/; revision=44302
2012-08-07Fix bug when compiling several filters.Irene Rüngeler1-4/+5
svn path=/trunk/; revision=44301
2012-08-07It should now compile with GDK_DISABLE_DEPRECATEDAnders Broman1-4/+0
svn path=/trunk/; revision=44300
2012-08-07FixJörg Mayer1-0/+2
/home/jmayer/work/wireshark/svn/trunk/ui/gtk/capture_dlg.c:209:19: error: ‘compile_bpf_w’ defined but not used [-Werror=unused-variable] svn path=/trunk/; revision=44299
2012-08-07Add window with notebooks to display bpf compile results.Irene Rüngeler2-16/+88
svn path=/trunk/; revision=44298
2012-08-07Remove a set-but-not-used variable.Jeff Morriss1-2/+0
svn path=/trunk/; revision=44297
2012-08-07From Rishie Sharma:Anders Broman1-1/+1
compile error fix svn path=/trunk/; revision=44296
2012-08-07error: variable ‘hsdsch_physical_layer_category’ set but not usedAnders Broman1-1/+1
svn path=/trunk/; revision=44295
2012-08-07Make Windows buildbot happy.Irene Rüngeler1-3/+3
-This line, and those below, will be ignored-- M ui/gtk/capture_dlg.c svn path=/trunk/; revision=44294
2012-08-07Make macos buildbot happyIrene Rüngeler1-1/+1
svn path=/trunk/; revision=44293
2012-08-07From Jacob Nordgren and Rishie Sharma:Anders Broman5-132/+260
- umts_fp: fixed so CS content is not malformed content - RLC: added channel tree so you can filter on rbid etc - umts_fp,rlc,mac: added some hdsch-common code svn path=/trunk/; revision=44292
2012-08-07Fix forJörg Mayer1-1/+4
/home/jmayer/work/wireshark/svn/trunk/ui/gtk/capture_dlg.c:4016:18: error: unused variable ‘all_compile_bt’ [-Werror=unused-variable] svn path=/trunk/; revision=44291