aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/prefs_nameres.c
AgeCommit message (Collapse)AuthorFilesLines
2010-10-12Rename g_resolv_flags --> gbl_resolv_flags; Also: cleanup some whitespace & ↵Bill Meier1-2/+2
indentation. svn path=/trunk/; revision=34487
2010-08-30Remove some unnecessary includes: a lot of things don't need globals.h and ↵Jeff Morriss1-2/+0
register.h svn path=/trunk/; revision=34017
2010-06-13Add info to the "Enable OID resolution" tooltip that if 'True' then the 'SMI ↵Bill Meier1-2/+3
paths' and the 'SMI modules' preferences will be shown; Fix a comment. svn path=/trunk/; revision=33219
2010-03-03Disable OID resolution and loading SMI modules by default.Balint Reczey1-0/+46
Add an option to enable OID resolution. Add an option to suppress errors reported by libsmi. svn path=/trunk/; revision=32096
2009-11-10Removed some dead code. The sm_resolv, sp_resolv and geoip_resolv buttonStig Bjørlykke1-33/+5
references are not used anywhere else. svn path=/trunk/; revision=30917
2009-06-21"main_menu.[ch]" -> "menus.[ch]"; it handles not only the main menu, butGuy Harris1-1/+1
context menus. Note why we have an empty hex dump pane context menu. svn path=/trunk/; revision=28794
2009-03-19As suggested by Jakub Zawadzki: actually use sizeof(...) rather than a ↵Bill Meier1-1/+1
numeric constant in various places; svn path=/trunk/; revision=27800
2009-01-14Clarify the GeoIP path tooltip.Gerald Combs1-3/+4
svn path=/trunk/; revision=27230
2008-12-01Display the settings for not-compiled-in features:Jörg Mayer1-3/+20
It's not a good idea to refer people in the snmp section to the name resultion section for mibs configuration and then not provide any clue that they are there correctly if mib support wasn't compiled in. svn path=/trunk/; revision=26889
2008-10-27Fix the GeoIP preference description.Jaap Keuter1-1/+1
svn path=/trunk/; revision=26594
2008-10-27Removed a g_warning().Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=26583
2008-10-27Add support for the GeoIP library. Using different database files,Gerald Combs1-23/+70
GeoIP can map IP addresses to Countries, Cities, AS numbers, ISPs, etc. If any library paths are defined AND any database files are found, corresponding columns are added to the endpoint tables in the GUI. To do: - Add columns to the conversation list - Add GeoIP info to "-z conv,..." - Create a default UAT file. svn path=/trunk/; revision=26571
2008-08-07Add support for the c-ares asynchronous DNS resolution library to theGerald Combs1-14/+14
Windows build. Add support for async IPv6 lookups. Update the ADNS code slightly. This is not supported (yet) on the UNIX side. svn path=/trunk/; revision=25953
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-1/+1
equivalent API gtk_container_border_width() ==> gtk_container_set_border_width() gtk_container_children() ==> gtk_container_get_children() gtk_entry_new_with_max_length() ==> gtk_entry_new(); gtk_entry_set_max_length() gtk_menu_append() ==> gtk_menu_shell_append() gtk_menu_prepend() ==> gtk_menu_shell_prepend() gtk_notebook_set_page() ==> gtk_notebook_set_current_page() gtk_paned_gutter_size() ==> gtk_paned_set_gutter_size() gtk_radio_button_group() ==> gtk_radio_button_get_group() gtk_signal_connect() ==> g_signal_connect() gtk_signal_disconnect() ==> g_signal_handler_disconnect() gtk_signal_emit_by_name() ==> g_signal_emit_by_name() gtk_signal_handler_block_by_data() ==> g_signal_handlers_block_matched() gtk_signal_handler_block_by_func() ==> g_signal_handlers_block_by_func() gtk_signal_handler_unblock_by_data() ==> g_signal-handlers_unblock_matched() gtk_signal_handler_unblock_by_func() ==> g_signal-handlers_unblock_by_func() gtk_spin_button_get_value_as_float() ==> gtk_spin_button_get_value() gtk_toggle_button_set_state() ==> gtk_toggle_button_set_active() svn path=/trunk/; revision=25634
2008-04-13change all preferences related filenames from xy_prefs to prefs_xyUlf Lamping1-0/+227
svn path=/trunk/; revision=24975