Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-30 Thread Graham Bloice
On 30 December 2015 at 10:52, VIKRAM VENKATESH HEGDE wrote: > Hi, > > > > Sure, will submit the feature in patches may be will start doing so by > next week. > > Thanks for the support. > > > > Thanks & Regards, > > Vikram > > > FWIW, I have a different opinion than Anders

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2015-12-30 Thread Guy Harris
On Dec 30, 2015, at 12:14 PM, Guy Harris wrote: > On Dec 29, 2015, at 11:29 PM, Yang Luo wrote: > >> I changed this function to always returning 1, which means "supported". I >> know here I should check whether the adapter supports the monitor mode, but

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2015-12-30 Thread Guy Harris
On Dec 29, 2015, at 11:29 PM, Yang Luo wrote: > 2) pcap_cant_set_rfmon function in wpcap\libpcap\pcap.c: > https://github.com/nmap/npcap/blob/master/wpcap/libpcap/pcap.c > Line 98 > > /* > * For systems where rfmon mode is never supported. > */ > static int >

Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-30 Thread Anders Broman
Den 30 dec 2015 17:01 skrev "Graham Bloice" : > > > > On 30 December 2015 at 10:52, VIKRAM VENKATESH HEGDE wrote: >> >> Hi, >> >> >> >> Sure, will submit the feature in patches may be will start doing so by next week. >> >> Thanks for the

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2015-12-30 Thread Guy Harris
See also updates to your question at http://stackoverflow.com/questions/34507789/how-to-enable-802-11-monitor-mode-dot11-operation-mode-network-monitor-in-a-nd ___ Sent via:Wireshark-dev mailing list

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2015-12-30 Thread Guy Harris
By the way, the next thing you'll have to do, if you haven't done so already, is to handle raw 802.11 packet indications from NDIS: https://msdn.microsoft.com/EN-US/library/ff554833.aspx which seems to imply that you need to set NDIS_PACKET_TYPE_802_11_RAW_DATA and

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2015-12-30 Thread Yang Luo
Hi Alexis, So it seems that I need to build Wireshark from source. I encountered some errors when building: My build machine is Win10 x64. I am using the trunk code of Wireshark (git clone https://code.wireshark.org/review/wireshark), VS 2013 Ultimate, QT 5.5.1 for MSVC 2013 64bit, CMake 3.4.1

Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-30 Thread Anders Broman
From: wireshark-dev-boun...@wireshark.org [mailto:wireshark-dev-boun...@wireshark.org] On Behalf Of VIKRAM VENKATESH HEGDE Sent: den 29 december 2015 06:57 To: wireshark-dev@wireshark.org Subject: [Wireshark-dev] UI Proposal for better Analysis for Android devices Dear All, Its my pleasure

[Wireshark-dev] Qt and setlocale

2015-12-30 Thread João Valverde
Hi, Should Qt call setlocale? GTK does. https://code.wireshark.org/review/12944 Regards, João ___ Sent via:Wireshark-dev mailing list Archives:

Re: [Wireshark-dev] UI Proposal for better Analysis for Android devices

2015-12-30 Thread VIKRAM VENKATESH HEGDE
Title: Samsung Enterprise Portal mySingle Hi,   Sure, will submit the feature in patches may be will start doing so by next week. Thanks for the support.   Thanks & Regards, Vikram   --- Original Message --- Sender : Anders Broman Date : Dec 30, 2015 16:59

Re: [Wireshark-dev] How Wireshark supports monitor mode for WLAN 802.11 adapter in Windows?

2015-12-30 Thread Alexis La Goutte
Hi Yang, Good idea ! (i like) There is a "Monitor" column on Wireshark but need to have SHOW_MONITOR_COLUMN (HAVE_PCAP_CREATE) enable (see ui/qt/capture_interfaces_dialog.cpp ) But the column will look no available on Windows... Cheers On Wed, Dec 30, 2015 at 8:29 AM, Yang Luo