aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_wlan.c
AgeCommit message (Collapse)AuthorFilesLines
2010-08-30Remove some unnecessary includes: a lot of things don't need globals.h and ↵morriss1-2/+1
register.h git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34017 f5534014-38df-0310-8fa8-9805f1628bb7
2008-04-13sort #includes by directoriesulfl1-5/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24969 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-17Added an option to Conversations and Endpoints to limit the list to matchstig1-1/+1
the current display filter. Some Hosts -> Endpoints cleanup. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24368 f5534014-38df-0310-8fa8-9805f1628bb7
2006-12-29Fix for bug #1278: sfisher1-2/+2
"When analysing a trace with 802.11 packages (made by airpcap) and selecting Statistics->Conversation List->WLAN all wlan conversations are listed. When after this selecting Apply as filter->Selected->A<->B a display filter is created as eth.addr==<A> && eth.addr==<B> when if should be wlan.addr==<A> && wlan.addr==<B>" git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20234 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21name changesahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-11 add an userdata argument to register_stat_cmd_arg() and its callback to use ↵lego1-3/+3
the callback for multiple registrations. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17252 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-21As per a suggestion by Ulf Lamping, rename gtk_*.[ch] to gui_*.[ch], soguy1-1/+1
that it doesn't appear to be part of GTK+. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15501 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-21Add a "register_dfilter_stat()", to register stats that take a displayguy1-1/+2
filter as an argument on the command line and have a dialog box to enter the display filter through the GUI. Use it for all stats using "gtk_tap_dfilter_dlg_cb()". Add a top-level "stat_menu.h" file to declare "REGISTER_STAT_GROUP_E" for the benefit of the declaration of "register_dfilter_stat()" in the top-level "tap_dfilter_dlg.h". Rename the "stat_menu.h" in the gtk directory to "gtk_stat_menu.h", so as not to have two headers with the same name. Get rid of headers not declaring any functions not being used in the module. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15493 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-20Rename epan/stat.[ch] to epan/stat_cmd_args.[ch] - it only deals withguy1-1/+1
implementing the "-z" command-line arguments, it doesn't deal with *all* issues for stats. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15483 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-19Move the stats.[ch] stuff into epan, so plugins can use it.guy1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15429 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-19Move the APIs for registering and processing "-z" command-line argumentsguy1-3/+4
and "Statistics" menu items into "stat.h" and "stat.c", to separate them from the core tapping APIs. A tap could conceivably not register as a "-z" command-line argument or "Statistics" menu item, and a stat could conceivably not be implemented as a tap, and dissectors that implement tapping points don't need the UI-related stuff from "stat.h", they just want the tap-related stuff in <epan/tap.h>. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15427 f5534014-38df-0310-8fa8-9805f1628bb7
2005-08-06Squelch more const warnings (and fix some memory leaks that found).guy1-2/+2
_U_-ify some unused arguments, rather than assigning them to themselves. Un-constify one variable that gets assigned a mallocated pointer. Clean up indentation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15236 f5534014-38df-0310-8fa8-9805f1628bb7
2005-04-01Rename "register_ethereal_tap()" to "register_tap_listener_cmd_arg()" asguy1-1/+1
it's used to register a callback for a tap listener invoked if the specified command line argument is specified to the "-z" flag. Move it, along with routines to: look up a "-z" argument in the table constructed by "register_tap_listener_cmd_arg()" and either save the full argument to "-z" and the corresponding listener if it's found or return a failure indication if it isn't; list the available tap listeners; call the "init" routines for the tap listeners saved in the table above; and have Ethereal and Tethereal use those routines. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13993 f5534014-38df-0310-8fa8-9805f1628bb7
2005-01-01Make the signatures of functions passed to "register_tap_listener()"guy1-4/+4
match what "register_tap_listener()" expects (rather than squelching warnings about the differences by casting function pointers to "void *"). Make static some functions not used outside the module in which they're defined. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12913 f5534014-38df-0310-8fa8-9805f1628bb7
2004-12-22Change the RCS ID - it's not getting expanded when it's "$Id $".guy1-3/+3
Fix a comment in conversations_wlan.c. Refer to "WLAN" in hostlist_wlan.c, just as we do in conversations_wlan.c. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12814 f5534014-38df-0310-8fa8-9805f1628bb7
2004-12-21Giles Scott: Add Wlan tapjmayer1-0/+90
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@12799 f5534014-38df-0310-8fa8-9805f1628bb7