aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2010-10-10Define some fcns & vars as static...Bill Meier3-14/+14
svn path=/trunk/; revision=34459
2010-10-10Define some fcns & vars as static ...Bill Meier14-217/+228
svn path=/trunk/; revision=34458
2010-10-10#include <epan/tfs.h> not req'd.Bill Meier1-1/+0
svn path=/trunk/; revision=34457
2010-10-10Fix build.Guy Harris1-1/+1
svn path=/trunk/; revision=34456
2010-10-10- Fix more callbacks.Anders Broman6-51/+87
When using the GUImanager the callback signature is (GtkAction *action , gpointer user_data) which causes problems when retreiveing object data stored with the widget such as the filter box widget. Work around that problem by doing filter_cm = g_object_get_data(G_OBJECT(top_level), E_DFILTER_CM_KEY); filter_te = gtk_bin_get_child(GTK_BIN(filter_cm)); in the follow_udp/tcp/ssl_stream. svn path=/trunk/; revision=34455
2010-10-10It's now "change column", not just "rename column"; fix build.Guy Harris1-27/+25
Clean up indentation. svn path=/trunk/; revision=34454
2010-10-10Fix up a number of callbacks.Anders Broman3-291/+360
Bug: https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5288 requires abit of reworking of the callbacks or a different aproach to setting object data. svn path=/trunk/; revision=34453
2010-10-10[Automatic manuf, services and enterprise-numbers update for 2010-10-10]Gerald Combs1-8/+34
svn path=/trunk/; revision=34449
2010-10-10[Automatic manuf, services and enterprise-numbers update for 2010-10-10]Gerald Combs2-6/+206
svn path=/trunk/; revision=34448
2010-10-09Fix menu entry.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=34447
2010-10-09Fix menu entries.Stig Bjørlykke2-2/+2
svn path=/trunk/; revision=34446
2010-10-09Prefix window title with "Wireshark".Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=34445
2010-10-09Added "Edit Column Details" functions to the packet list heading popup.Stig Bjørlykke8-44/+232
Removed "Rename Column Title" as this is moved to "Edit Column Details". svn path=/trunk/; revision=34444
2010-10-09From Alexander Koeppe via bug 5287:Stig Bjørlykke1-1/+1
Correct order of Window Scaling Graph in Graph control box. svn path=/trunk/; revision=34443
2010-10-08Restore pinfo->private_data after an exception was thrown by a subdissector.Jeff Morriss2-59/+101
This is necessary in case a subdissector had changed it but was unable to restore it (due to the exception). svn path=/trunk/; revision=34437
2010-10-08Restore pinfo->private_data after an exception was thrown by a subdissector.Jeff Morriss14-132/+242
This is necessary in case a subdissector had changed it but was unable to restore it (due to the exception). Remove check_col(). svn path=/trunk/; revision=34436
2010-10-08Don't use a TRY/CATCH block just to ignore any exceptions thrown byJeff Morriss1-13/+11
tvb_get_ntohs(): check the remaining tvb length instead. svn path=/trunk/; revision=34435
2010-10-08Show custom column occurrence in the packet list heading tooltips.Stig Bjørlykke1-1/+5
svn path=/trunk/; revision=34434
2010-10-08From Tobias Witek (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5283)Martin Mathieson4-23/+53
epan/dissectors/packet-umts_fp.c * Added mac subdissector (MAC) call to HSDSCH TYPE2 frames epan/dissectors/packet-umts_mac.c * Added support for HSDSCH TYPE2 frames by means of not nibble-shifting (4 bits) the SDU if MAC-ehs is used epan/dissectors/packet-rlc.c * Added support for "Use special value of the HE field" (3gpp 25.332-7a0 9.2.2.7) commonly used for Release 7 HSDPA. REMARK: although the specification mandates that the special value is only allowed when activated by higher layers (RRC), it is interpreted unconditionally. We assume this is OK, because a different use in future specifications is very unlikely. epan/dissectors/packet-fp_hint.c * Added decoding of MAC-ehs indicator for HSDSCH frames * Bumped fpi->release from 6 to 7 to enable proper HSDSCH TYPE2 frame decoding in the UTMS MAC parser. In general, this appears not to affect decoding of (conformant) FP frames of pevious releases. svn path=/trunk/; revision=34433
2010-10-08Add Alexander Koeppe to the list.Anders Broman1-0/+4
svn path=/trunk/; revision=34432
2010-10-08Get rid of an GUI artifact if the recent list is empty.Anders Broman1-0/+8
svn path=/trunk/; revision=34431
2010-10-08Make some routines unused outside gtk/menus.c static.Guy Harris1-5/+5
svn path=/trunk/; revision=34430
2010-10-08Fix a routine name - that menu item has nothing to do with colorization.Guy Harris1-3/+3
svn path=/trunk/; revision=34429
2010-10-08Clean up white space.Guy Harris1-75/+70
set_menu_object_data_meat_old() is only used with main_menu_factory; simplify it. Add some comments to #else's and #endif's. svn path=/trunk/; revision=34428
2010-10-08set_menu_sensitivity_old() is now only used for the main menu; simplifyGuy Harris1-136/+120
it accordingly. svn path=/trunk/; revision=34427
2010-10-08Remove check_col()Jeff Morriss3-99/+69
svn path=/trunk/; revision=34426
2010-10-08Move a comment next to the only item to which it now refers.Guy Harris1-27/+27
svn path=/trunk/; revision=34425
2010-10-08Restore private_data even if there was an exceptionJeff Morriss1-50/+52
svn path=/trunk/; revision=34424
2010-10-08Clean up white space.Guy Harris1-284/+283
svn path=/trunk/; revision=34423
2010-10-08Move menu_items[] inside the #ifdef MAIN_MENU_USE_UIMANAGER/#else/#endifGuy Harris1-441/+439
that has the main menu stuff for when we *are* using GTKUIManager. svn path=/trunk/; revision=34422
2010-10-08Don't use a TRY/CATCH block just to ignore any exceptions thrown byJeff Morriss1-8/+5
tvb_get_ntohs(): check the remaining tvb length instead. svn path=/trunk/; revision=34421
2010-10-08Catch exceptions from subdissectors, even when we're not handing theJeff Morriss1-27/+44
subdissector the first fragment of a fragmented message so that an exception in the first chunk doesn't abort dissection of subsquent chunks in the frame. Restore pinfo->private_data after an exception was thrown by a subdissector. This is necessary in case a subdissector had changed it but was unable to restore it (due to the exception). svn path=/trunk/; revision=34420
2010-10-08Use #error to cause the build to fail for un-implemented stuff (such asGuy Harris1-3/+37
"GTKUIManager with the old packet list"). Replicate the "don't do silly stuff such as using Control+A for anything other than Select All" comment near the place where the main menu is defined if we're using GTKUIManager. svn path=/trunk/; revision=34419
2010-10-08Fix the blurb regexp (sigh)Jeff Morriss1-2/+2
svn path=/trunk/; revision=34418
2010-10-07(Minor) Rename a few variables in the global namespace to be a bit more unique;Bill Meier15-58/+60
Also: rename additional (static) variables to be consistent with the above renames. svn path=/trunk/; revision=34412
2010-10-07Define a few global variables as static.Bill Meier2-7/+7
svn path=/trunk/; revision=34411
2010-10-07Define 3 global variables as static; Whitespace cleanup.Bill Meier1-256/+256
svn path=/trunk/; revision=34410
2010-10-07Define a global variable as static.Bill Meier1-1/+1
svn path=/trunk/; revision=34409
2010-10-07Restore pinfo->private_data after an exception was thrown by a subdissector.Jeff Morriss1-0/+8
This is necessary in case a subdissector had changed it but was unable to restore it (due to the exception). svn path=/trunk/; revision=34408
2010-10-07Define global variables ROWS, COLS, MAXROWS, MAXCOLS as static;Bill Meier1-4/+4
Also: Define a few functions as static. svn path=/trunk/; revision=34407
2010-10-07Escape the pipe (alternation) in the display regexp.Jeff Morriss1-2/+2
svn path=/trunk/; revision=34406
2010-10-07Tighten the blurb regexp. Check for leading/trailing white space in blurbs. ↵Jeff Morriss1-3/+12
Check for any white space in the abbreviation. svn path=/trunk/; revision=34405
2010-10-07Reinsert #ifdef's removed by mistake.Anders Broman1-8/+17
svn path=/trunk/; revision=34404
2010-10-07Remove #ifdef'ed code for MENUS_USE_UIMANAGER.Anders Broman1-676/+2
svn path=/trunk/; revision=34403
2010-10-07White space cleanupJeff Morriss2-102/+102
svn path=/trunk/; revision=34402
2010-10-07Add more CRC failure codes.Martin Mathieson3-32/+68
svn path=/trunk/; revision=34401
2010-10-07Generate proper extension flags for empty constructed types SEQUENCE { ... } ↵Tomas Kukosa2-10/+16
and CHOICE { ... } svn path=/trunk/; revision=34400
2010-10-07From Tobias Witek (bug 5282):Martin Mathieson1-17/+16
In some cases, the UMTS FP dissector currently calls upper-layer dissectors (e.g. UMTS MAC) only when a proto-tree is present. Effectively, this causes the RLC reassembly to fail in certain cases. The attached patch solves the problem by slightly moving the calls to 'call_dissector()'. svn path=/trunk/; revision=34399
2010-10-06Enable hf checks by default. Add a check to see if the abbreviation is ↵Jeff Morriss1-3/+6
equal to the hf_variable_name. svn path=/trunk/; revision=34398
2010-10-06Change a couple of hf abbreviations so they're not the name of the hf variable.Jeff Morriss5-99/+99
Use . as the separator (after PROTOABBREV) in the hf abbreviations. svn path=/trunk/; revision=34397