wireshark/ui/gtk
Anders Broman 28474fe8ef From Mike Garratt:
Friendly Names for interfaces on Windows

Notes on the changes the patch covers:
* if_info_t struct: addition of friendly_name
* Dumpcap Interface list format changes:
  + Win32: "dumpcap -D" shows friendly_name in place of descript if known
  + All: machine interface "dumpcap -D -Z none" includes friendly_name in the
list in addition to the existing parameters
* interface_options struct: addition of console_display_name
  + When an interface name is displayed in a console, it will typically be the
console_display_name (instead of name). 
  + console_display_name is used as the basis of the autogenerated temp
filenames
  + console_display_name is typically set to the friendly_name if known,
otherwise it is set to the interface name
* Enhancements to capture_opts_add_iface_opt() (the function which process -i
options).
  + Can now specify the interface using its name and friendly_name
  + Interface name matching is case insenstive
  + Name matching first attempts exact matching, then falls back to prefix
matching
    (e.g. dumpcap -i local)
  + Validates interface names, instead of blindly sending them off to
winpcap/libpcap
  + Interface specification by number is still supported.
* capture_opts_trim_iface() has been refactored:
  + Instead of repeating a decent chunk of the cost in
capture_opts_add_iface_opt(), it calls capture_opts_trim_iface() to specify the
interface.
* introduction of capture_win_ifnames.[ch] (windows only code)
  + Implements static function GetInterfaceFriendlyNameFromDeviceGuid() - a
windows version independant function to convert an interface guid into its
friendly name.  Uses published api functions on windows vista and higher, but
falls back to unpublished API functions on older windows releases.
  + void get_windows_interface_friendlyname(/* IN */ char
*interface_devicename, /* OUT */char **interface_friendlyname); - extracts the
GUID from the interface_devicename, then uses
GetInterfaceFriendlyNameFromDeviceGuid() to do the resolution
* Auto temp filename generation:
  + Now uses wireshark_pcapng_* or  wireshark_pcap_* depending on file format
  + Basis temp filename format on console_display_name
  + Win32: if console_display_name is a windows interface guid, extracts
numbers from GUID here (instead of in interface option processing) 

GUI CHANGES:
* Dialog that displays when you click the "Manage Interfaces" button (within
Capture Options dialog) has been renamed from "Add new interfaces" to
"Interface Management"
* ui/gtk/capture_dlg.c: new_interfaces_w variable renamed to
interface_management_w
* Win32: Local Interfaces tab on Interface Management dialog, shows includes
friendly name as far left column
* Interface Management dialog defaults to larger size on win32 - so it fits
without resizing local interfaces tab
* Interface Management dialog now saves preferences when you click the apply
button (local hidden interfaces was not persisting across restarts)
* Tweaks: "Interface Details" dialog (Interface list->Capture Interfaces ->
Details):
  + "Friendly Name" renamed to "NDIS Friendly Name"
  + Added "OS Friendly Name" to the top of the list
* Win32: The "Capture Interfaces" dialog now shows the friendly name instead of
device guid
* Welcome screen:
  + The height of the interface list scrollbox dynamically adjusts & updates to
the number visible interfaces.
    Up to 10 interfaces can be listed without a scroll bar, the minimum height
is for 2 interfaces. 
  + Win32: now shows just the Friendly Name if known - in place of
"Interfacename_Guid:(Description)"

svn path=/trunk/; revision=46083
2012-11-19 20:07:27 +00:00
..
ui As I think Guy said a while back (quoting some HIG): anything you can do in a 2012-03-23 02:37:25 +00:00
CMakeLists.txt Move ui-independent object export routines to the common ui directory. 2012-10-18 21:14:43 +00:00
Makefile.am Add python cache and temporary files to the list of files to clean up. 2012-09-18 17:40:50 +00:00
Makefile.common Move ui-independent object export routines to the common ui directory. 2012-10-18 21:14:43 +00:00
Makefile.nmake Add python cache and temporary files to the list of files to clean up. 2012-09-18 17:40:50 +00:00
Makefile_custom.common
STATUS.gtk3 As of r44326 everything builds with GDK_DISABLE_DEPRECATED 2012-08-08 07:09:33 +00:00
about_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
about_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
afp_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
airpcap_dlg.c Get rid of an GTK warning about illegal cast. 2012-11-07 16:42:48 +00:00
airpcap_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
airpcap_gui_utils.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
airpcap_gui_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
ansi_a_stat.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
ansi_map_stat.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
bootp_stat.c remove some very old comments about multithreaded tap implementation... 2012-09-28 21:48:28 +00:00
bytes_view.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
bytes_view.h The Id and license header was missing: add it. 2012-08-15 23:22:20 +00:00
camel_counter.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
camel_srt.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
capture_comment_icons.h Update the comment icons and tooltips. 2012-03-08 19:07:02 +00:00
capture_dlg.c From Mike Garratt: 2012-11-19 20:07:27 +00:00
capture_dlg.h Add window with notebooks to display bpf compile results. 2012-08-07 13:25:42 +00:00
capture_file_dlg.c Add a capture_file * element to packet_range_t and pass it explicitly in 2012-10-05 18:52:42 +00:00
capture_file_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
capture_if_details_dlg_win32.c From Mike Garratt: 2012-11-19 20:07:27 +00:00
capture_if_details_dlg_win32.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
capture_if_dlg.c From Mike Garratt: 2012-11-19 20:07:27 +00:00
capture_if_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
capture_info_dlg.c (Trivial) Remove unneeded #include. 2012-10-07 22:33:59 +00:00
cfilter_combo_utils.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
cfilter_combo_utils.h Add a filter for all selected interfaces to the capture options dialog. 2012-08-07 07:58:05 +00:00
color_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
color_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
color_edit_dlg.c fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7913 2012-10-28 19:13:54 +00:00
color_edit_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
color_utils.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
color_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
compare_stat.c remove some very old comments about multithreaded tap implementation... 2012-09-28 21:48:28 +00:00
conversations_eth.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_fc.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_fddi.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_ip.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_ipv6.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_ipx.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_jxta.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_ncp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_rsvp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_sctp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_table.c After launching 'Follow stream' or one of the graphs, restore the 2012-11-14 02:53:41 +00:00
conversations_table.h After launching 'Follow stream' or one of the graphs, restore the 2012-11-14 02:53:41 +00:00
conversations_tcpip.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_tr.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_udpip.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_usb.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
conversations_wlan.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
dcerpc_stat.c remove some very old comments about multithreaded tap implementation... 2012-09-28 21:48:28 +00:00
decode_as_ber.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
decode_as_ber.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
decode_as_dcerpc.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
decode_as_dcerpc.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
decode_as_dlg.c Try to make the decode as window look a bit nicer. 2012-11-06 12:23:46 +00:00
decode_as_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
dfilter_expr_dlg.c Wireshark Filter Expression dialog does not sort list of named fields. Patch from Jakub Zawadzki. Resolves https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7743 2012-10-22 18:10:48 +00:00
dfilter_expr_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
diameter_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
dissector_tables_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
dissector_tables_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
dlg_utils.c Allow TCP graphs to be launched from the conversation table window. 2012-11-11 18:32:47 +00:00
dlg_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
doxygen.cfg.in Fix path to doxygen_global.cfg 2012-03-19 01:10:19 +00:00
drag_and_drop.c From Jim Young and updated by Max Romanov: 2012-11-02 09:58:43 +00:00
drag_and_drop.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
edit_packet_comment_dlg.c change the capture comment icon in the statusbar from "add" to "edit" 2012-09-24 19:30:23 +00:00
edit_packet_comment_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
expert_comp_dlg.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
expert_comp_dlg.h update the expert info entries after a packet comment was modified 2012-09-10 19:48:16 +00:00
expert_comp_table.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
expert_comp_table.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
expert_indicators.h Add green bullet to indicate success. 2012-08-09 13:23:47 +00:00
export_object_dlg.c Move ui-independent object export routines to the common ui directory. 2012-10-18 21:14:43 +00:00
export_object_dlg.h Move ui-independent object export routines to the common ui directory. 2012-10-18 21:14:43 +00:00
export_sslkeys.c Move common SSL key export routines to ui/ssl_key_export.[ch]. Make the 2012-10-16 18:14:16 +00:00
export_sslkeys.h Move common SSL key export routines to ui/ssl_key_export.[ch]. Make the 2012-10-16 18:14:16 +00:00
fc_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
file_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
file_dlg.h Move most of file_open_cmd to gtk_open_file. Make gtk_open_file 2012-07-16 20:46:13 +00:00
file_import_dlg.c Minor cleanup: 2012-10-07 17:45:56 +00:00
file_import_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
fileset_dlg.c Add a window pointer so that we can figure out from whence we came. 2012-10-01 20:14:47 +00:00
fileset_dlg.h Call fileset_file_closed from cf_cb_file_closed. 2012-09-26 23:40:56 +00:00
filter_autocomplete.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
filter_autocomplete.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
filter_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
filter_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
filter_expression_save_dlg.c Revert r45185. While it looks better with an icon if "Filter toolbar style" is set to "Icons & Text", if the preference is set to "Icons only", all custom filters will have the same icon displayed and it will be difficult to know which is which w/out hovering on each for a tooltip. Maybe someone else can figure out how to add the icon, but only in the case of "Icons & Text"? 2012-09-30 18:15:40 +00:00
filter_expression_save_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
filter_utils.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
filter_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
find_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
find_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
firewall_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
firewall_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
flow_graph.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
follow_ssl.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
follow_ssl.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
follow_stream.c Widen the "Find text" dialog a bit so the entire title is visible. 2012-10-01 20:57:15 +00:00
follow_stream.h
follow_tcp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
follow_tcp.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
follow_udp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
follow_udp.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
font_utils.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
font_utils.h user_font_get_bold() is no longer needed, remove it. 2012-07-15 20:29:22 +00:00
funnel_stat.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
goto_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
goto_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
graph_analysis.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
graph_analysis.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
gsm_a_stat.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
gsm_map_stat.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
gsm_map_stat.h Update FSF address - part II. 2012-06-28 23:18:38 +00:00
gsm_map_summary.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
gtk_iface_monitor.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
gtk_iface_monitor.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
gtkglobals.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
gtp_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
gui_stat_menu.h Allow TCP graphs to be launched from the conversation table window. 2012-11-11 18:32:47 +00:00
gui_stat_util.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
gui_stat_util.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
gui_utils.c This is an attempt to improve the default window placement position when there's more than one monitor and Wireshark's main window isn't located on the primary monitor. New windows will now open on the same monitor as Wireshark's main window, at a fixed location slightly offset from the main window. Previously, new windows would always open on the primary monitor regardless of the monitor that Wireshark was on. Note that this is only the default position and future patches will likely cause many windows to change this position. Further usage/feedback will determine if this is a good temporary stategy or not. It *may* help obviate the need to save every window's x,y & size though. 2012-10-07 17:16:51 +00:00
gui_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
h225_counter.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
h225_ras_srt.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
help_dlg.c Use topic_action instead of topic_cb for the Windows file dialogs. Move 2012-10-16 19:47:43 +00:00
help_dlg.h Move the UI-independent help URL code to ui/help_url.[ch]. 2012-09-18 21:51:22 +00:00
hostlist_eth.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_fc.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_fddi.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_ip.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_ipv6.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_ipx.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_jxta.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_ncp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_rsvp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_sctp.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_table.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
hostlist_table.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
hostlist_tcpip.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_tr.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_udpip.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_usb.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
hostlist_wlan.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
iax2_analysis.c Add wtap_pseudo_header union to wtap_pkthdr structure. 2012-10-16 21:50:57 +00:00
iax2_analysis.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
io_stat.c Remove one more instance of destroy/create cr. 2012-11-08 13:42:34 +00:00
keys.h Do not display a "Wireless Settings" button for non-AirPcap interfaces; 2012-09-22 20:09:55 +00:00
ldap_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
libgtkui.vcproj Move ui-independent object export routines to the common ui directory. 2012-10-18 21:14:43 +00:00
mac_lte_stat_dlg.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
macros_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
macros_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main.c From Jim Young and updated by Max Romanov: 2012-11-02 09:58:43 +00:00
main.h protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
main_80211_toolbar.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
main_80211_toolbar.h From Pontus Fuchs: 2012-07-05 02:01:43 +00:00
main_airpcap_toolbar.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
main_airpcap_toolbar.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_filter_toolbar.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
main_filter_toolbar.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_menubar.c Remove set-but-not-used variable. Clean up white space (mostly 4-space tabs). 2012-11-05 22:40:14 +00:00
main_menubar_private.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_statusbar.c Add a format_size function similar to g_format_size that renders a size 2012-10-10 19:17:31 +00:00
main_statusbar_private.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_titlebar.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
main_titlebar.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_toolbar.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
main_toolbar.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_toolbar_private.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
main_welcome.c From Mike Garratt: 2012-11-19 20:07:27 +00:00
main_welcome.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
manual_addr_resolv.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
manual_addr_resolv.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
mcast_stream.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
mcast_stream.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
mcast_stream_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
mcast_stream_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
megaco_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
menus.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
mgcp_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
mtp3_stat.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
mtp3_stat.h Update FSF address - part II. 2012-06-28 23:18:38 +00:00
mtp3_summary.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
ncp_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
network_icons.h
old-gtk-compat.h (trivial) fix a typo 2012-09-16 18:00:56 +00:00
packet_history.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
packet_history.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
packet_list.c From Edwin Groothuis via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7842 2012-10-11 20:16:24 +00:00
packet_list.h - Replace packet_list_recreate_visible_rows -> packet_list_recreate_visible_rows_list 2012-09-04 02:35:25 +00:00
packet_list_store.c Add wtap_pseudo_header union to wtap_pkthdr structure. 2012-10-16 21:50:57 +00:00
packet_list_store.h - Replace packet_list_recreate_visible_rows -> packet_list_recreate_visible_rows_list 2012-09-04 02:35:25 +00:00
packet_panes.c Make data_source opqaue, add getter for tvb. 2012-10-20 19:54:56 +00:00
packet_panes.h - e_addr_resolve is structure so pass it by pointer. 2012-07-06 07:34:08 +00:00
packet_win.c Make data_source opqaue, add getter for tvb. 2012-10-20 19:54:56 +00:00
packet_win.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
pipe_icon.h Add icons for pipe interfaces. This allows for easier 2012-01-19 13:02:32 +00:00
pixmap_save.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
pixmap_save.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
plugins_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
plugins_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
prefs_capture.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
prefs_capture.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
prefs_column.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
prefs_column.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
prefs_dlg.c Try to fix prefs_dlg.c:1814: warning: 'abbrev' may be used uninitialized in this function. 2012-11-05 09:55:04 +00:00
prefs_dlg.h Make the columns of the capture options dialog selectable. Changes are stored in the preferences file. 2012-08-03 11:15:40 +00:00
prefs_filter_expressions.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
prefs_filter_expressions.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
prefs_gui.c Change "LED" to "icon" and add a packet comment icon to the corresponding expert info tab if the preference for displaying them is enabled. Basically, extend the fix for bug 3196 to include the packet comments tab. Also, fix some typos. 2012-09-22 17:02:34 +00:00
prefs_gui.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
prefs_layout.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
prefs_layout.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
prefs_stream.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
prefs_stream.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
print_dlg.c Add changes missing from the last commit. 2012-11-01 21:17:29 +00:00
profile_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
profile_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
progress_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
proto_dlg.c More unused variables caught by cppcheck. 2012-09-29 14:15:20 +00:00
proto_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
proto_help.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
proto_help.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
proto_hier_stats_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
proto_hier_stats_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
proto_hier_tree_model.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
proto_hier_tree_model.h From Jakub Zawadzki: Use custom model in Filter Expression dialog. 2012-05-04 04:44:23 +00:00
proto_tree_model.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
proto_tree_model.h - e_addr_resolve is structure so pass it by pointer. 2012-07-06 07:34:08 +00:00
radius_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
range_utils.c Remove a debugging #include. 2012-10-08 20:04:38 +00:00
range_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
remote_icons.h
rlc_lte_graph.c Introduce epan_dissect_run_with_taps() which run dissection with taps. 2012-10-20 19:27:24 +00:00
rlc_lte_stat_dlg.c Allow the RLC sequence graph to be called from the statistics window. 2012-10-15 17:29:04 +00:00
rpc_progs.c Simplify use of GtkTable in preparation for using GtkGrid instead if GTK3. 2012-10-04 15:35:10 +00:00
rpc_stat.c remove some very old comments about multithreaded tap implementation... 2012-09-28 21:48:28 +00:00
rtp_analysis.c Add wtap_pseudo_header union to wtap_pkthdr structure. 2012-10-16 21:50:57 +00:00
rtp_analysis.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
rtp_player.c More unused variables caught by cppcheck. 2012-09-29 14:15:20 +00:00
rtp_player.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
rtp_stream.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
rtp_stream.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
rtp_stream_dlg.c From Michal Labedzki: 2012-11-05 12:15:37 +00:00
rtp_stream_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
sat.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
scsi_stat.c remove some very old comments about multithreaded tap implementation... 2012-09-28 21:48:28 +00:00
sctp_assoc_analyse.c Add wtap_pseudo_header union to wtap_pkthdr structure. 2012-10-16 21:50:57 +00:00
sctp_byte_graph_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
sctp_chunk_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
sctp_chunk_stat_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
sctp_error_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
sctp_graph_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
sctp_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
sctp_stat.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
sctp_stat_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
service_response_time_table.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
service_response_time_table.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
simple_dialog.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
sip_stat.c Modify use of GtkTable in preparation for using GtkGrid instead if GTK3. 2012-10-04 19:29:54 +00:00
smb2_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
smb_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
stats_tree_stat.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
stock_icons.c Allow TCP graphs to be launched from the conversation table window. 2012-11-11 18:32:47 +00:00
stock_icons.h Allow TCP graphs to be launched from the conversation table window. 2012-11-11 18:32:47 +00:00
summary_dlg.c update the capture comment icon in the statusbar 2012-10-01 19:11:14 +00:00
summary_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
supported_protos_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
supported_protos_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
tap_param_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
tap_param_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
tcp_graph.c Was not allocating a large enough element array for tput graphs. 2012-11-18 19:52:48 +00:00
text_page_utils.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
text_page_utils.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
time_shift_dlg.c Store pointers to previously displayed and captured packet, not nstime_t deltas. 2012-09-23 16:25:28 +00:00
time_shift_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
uat_gui.c Enhance error output. 2012-11-18 18:10:48 +00:00
uat_gui.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
voip_calls.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
voip_calls.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
voip_calls_dlg.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
voip_calls_dlg.h Update Free Software Foundation address. 2012-06-28 22:56:06 +00:00
webbrowser.c We always HAVE_CONFIG_H so don't bother checking whether we have it or not. 2012-09-20 01:48:30 +00:00
webbrowser.h Move the UI-independent help URL code to ui/help_url.[ch]. 2012-09-18 21:51:22 +00:00
wlan_stat_dlg.c protect_thread_critical_region, unprotect_thread_critical_region are no-ops, cleanup code by removing them. 2012-09-28 21:36:21 +00:00
wsp_stat.c remove some very old comments about multithreaded tap implementation... 2012-09-28 21:48:28 +00:00