aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2012-09-16Work around Solaris 11's pkg-config being in /usr/ccs/bin but itsGuy Harris1-0/+10
aclocal directory apparently being in /usr/share/aclocal rather than the non-existent /usr/ccs/share/aclocal. (/usr/ccs is sort of an extension of /usr for developers; I'm not sure why they stuck the pkg-config stuff under /usr/share rather than /usr/ccs/share given that it's of interest only to developers.) svn path=/trunk/; revision=44922
2012-09-15From Pontus Fuchs via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7728Evan Huus8-25/+51
Make right-click + apply-as-filter work in the packet list for non-ethernet frames (such as ieee 802.11 frames). svn path=/trunk/; revision=44921
2012-09-15Add support for bzr checkouts (similar to git checkouts) to make-version.pl.Evan Huus1-1/+35
Also, add modelines. svn path=/trunk/; revision=44920
2012-09-15Trivial whitespace formatting cleanup;Bill Meier1-122/+128
svn path=/trunk/; revision=44919
2012-09-15Minor cleanup:Bill Meier1-48/+10
- Remove unneeded #includes; - Remove unused function [which uses deprecated gtk_table...()]; - Use consistent whitespace formatting style. svn path=/trunk/; revision=44918
2012-09-15Trivial cleanup;Bill Meier1-65/+67
Remove a few unneeded initializers; Fix a few typos in comments; Use consistent formatting style. svn path=/trunk/; revision=44917
2012-09-15From Niels Widger via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7725Evan Huus5-0/+26
Add get_filter method to Wireshark's Lua interface (to correspond with the already-exposed set_filter method). svn path=/trunk/; revision=44916
2012-09-15Avoid a stack-smash when decoding the new DNS option field if the length isEvan Huus1-1/+8
malformed. Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7730 svn path=/trunk/; revision=44915
2012-09-15Don't redefine WIRESHARK_UI_SRCAnders Broman1-5/+0
svn path=/trunk/; revision=44914
2012-09-15text_import_scanner_lex.h and text_import_scanner.c are now part ofGuy Harris2-7/+7
libui, not libgtkui. svn path=/trunk/; revision=44913
2012-09-15*Do* use DIRTY_GENERATED_C_FILES, as it's defined; sadly, flex doesn'tGuy Harris1-2/+4
generate warning-free files. svn path=/trunk/; revision=44911
2012-09-15DIRTY_GENERATED_C_FILES is empty, and isn't used by ui/gtk/Makefile.am,Guy Harris2-6/+2
so get rid of it, and stop using it in ui/gtk/Makefile.make; we don't want to encourage people to create source files that get warnings. svn path=/trunk/; revision=44910
2012-09-15Nobody uses DIRTY_GENERATED_C_FILES, so get rid of it; we don't want toGuy Harris1-4/+1
encourage people to create source files that get warnings. svn path=/trunk/; revision=44909
2012-09-15Update CMakeLists to respect the recent libui changes so that wireshark andEvan Huus1-1/+2
qtshark build again. (Also, first commit trying to use bzr as an svn client, so apologies if something unexpected breaks) svn path=/trunk/; revision=44908
2012-09-14libgtkui_dirty → libui_dirty.Gerald Combs3-9/+9
svn path=/trunk/; revision=44907
2012-09-14More fixes for the text import move.Gerald Combs4-11/+11
svn path=/trunk/; revision=44906
2012-09-14Deletions from the last commit didn't make it for some reason.Gerald Combs4-1215/+0
svn path=/trunk/; revision=44905
2012-09-14Create a common libui using CMake similar to what we do with Autotools.Gerald Combs14-34/+1318
Move the GTK+ text import code to the common UI directory. Create wtap_encap_requires_phdr() from code in file_import_dlg.c. svn path=/trunk/; revision=44904
2012-09-14Fix up the (#if'd out) sequence number analysis debug code so that it ↵Jeff Morriss1-105/+109
compiles and is easier to read. Also fix up some white space. svn path=/trunk/; revision=44903
2012-09-14Use consistent indentation and formatting style;Bill Meier1-132/+134
Fix a few typos; Fix long line. svn path=/trunk/; revision=44902
2012-09-14Try to make the buildbot happy.Anders Broman1-2/+2
svn path=/trunk/; revision=44901
2012-09-14Heuristically dissect TIPC IP payloads.Anders Broman1-0/+42
svn path=/trunk/; revision=44900
2012-09-14From Mike Morrin:Anders Broman4-74/+76
Fix pedantic compiler warnings in csn.1 dissectors. There is some tricky casting going on in csn.1 structures. To eliminate all the warnings, the function pointers needed to be moved out of the object pointer unions. Fortunately macros (mostly) hide these changes from the protocol dissector tables. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7686 svn path=/trunk/; revision=44899
2012-09-14Address buildbot error:Anders Broman1-1/+1
packet-nstrace.c: In function 'dissect_nstrace': packet-nstrace.c:131: warning: 'dst_vmname_len' may be used uninitialized in this function packet-nstrace.c:131: warning: 'src_vmname_len' may be used uninitialized in this function svn path=/trunk/; revision=44898
2012-09-14From Michal Labedzki:Anders Broman1-0/+1
Bluetooth: Add color for HID dissector https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7639 svn path=/trunk/; revision=44897
2012-09-14From Michal Labedzki:Anders Broman2-5/+6
Bluetooth: minor fix in HID Applied by hand and changed offset to be signed as per WS convention. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7639 svn path=/trunk/; revision=44896
2012-09-14From Nikhil Kalu:Anders Broman4-11/+125
Enhancement to add more trace record fields in Citrix NetScaler capture file format. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7713 svn path=/trunk/; revision=44895
2012-09-14From Michal Labedzki:Anders Broman5-0/+564
Add Bluetooth Protocol BNEP. Supported version: 1.0. I changed offset to be an int to follow WS convention.While at it I changed other types to fit the tvb_get routines. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7719 svn path=/trunk/; revision=44894
2012-09-14Fix enumeration value for Virtual RAT-TypePascal Quantin1-1/+1
svn path=/trunk/; revision=44893
2012-09-14From Josip Medved:Anders Broman1-10/+17
Updated multiple enumerations (Event-Trigger, Reporting-Level, IP-CAN-Type, Rule-Failure-Code and RAT-Type) to get them in sync with ETSI TS 129 212 V10.6.0 (2012-03). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7727 svn path=/trunk/; revision=44892
2012-09-14From Claude LeFrancois:Anders Broman1-5/+11
Cosmetic changes to GTPv2(Add text to itenms) Minor code changes by me. svn path=/trunk/; revision=44891
2012-09-14Use the latet GTK3+ bundles when building with GTK3Anders Broman1-2/+2
svn path=/trunk/; revision=44890
2012-09-14Use consistent indentation and formatting.Bill Meier1-274/+343
svn path=/trunk/; revision=44889
2012-09-13Remove our local copy of WinPcap and download it fromGerald Combs8-21/+25
wireshark-win{32,64}-libs instead. In win-setup.sh only try to unzip files ending in .zip. PortableApps and U3 packaging changes are untested. svn path=/trunk/; revision=44888
2012-09-13Minor tweek for GTK3Anders Broman1-0/+3
svn path=/trunk/; revision=44887
2012-09-13SCSI: Update INQUIRY standard page and decode the flags depending on which ↵Ronnie Sahlberg1-131/+147
version of SPC that the device claims conformance to. svn path=/trunk/; revision=44886
2012-09-12Also disable the resize grip on the profile bar (as it is on the info andJeff Morriss1-0/+3
packets bars; this is for GTK < 3.0). This fixes the problem I had that the profile bar normally took up way too much (horizontal) room when I start Wireshark (causing the contents of the much more interesting packets bar to be truncated). svn path=/trunk/; revision=44885
2012-09-12Fix FBI true_false_string array and remove a useless hf variablePascal Quantin1-2/+1
svn path=/trunk/; revision=44884
2012-09-12From Mike Morrin:Anders Broman1-322/+232
* fixup of dissection of message type for PRACH messages. * fixed dissection of optional octet 2/3 in dl control messages * removed a few more duplicate hf items * changed all M_BIT macros to M_UINT, as M_BIT does not use the referenced hf. * fixed dissection of ul_tfi and dl_tfi so that assignments and usage can be filtered more easily * fixed missing references to existing value strings and converted to tfs strings where possible https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7686 svn path=/trunk/; revision=44883
2012-09-12Add doxygen hints.Anders Broman1-110/+115
svn path=/trunk/; revision=44882
2012-09-12From Esa Haapamäki via ↵Pascal Quantin1-2/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7718 : Fix dissection of NAS Uplink and Downlink Count in MM Context IE svn path=/trunk/; revision=44881
2012-09-11As suggested by Anatoly in ↵Jeff Morriss1-2/+2
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5699 : Followup to r44844: use a better cast (intptr_t instead of long long). svn path=/trunk/; revision=44880
2012-09-11From Chris Elston:Anders Broman1-98/+385
Add automatic L2TPv3 session setting detection https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7711 svn path=/trunk/; revision=44879
2012-09-11Revert r44869Jakub Zawadzki1-1/+1
svn path=/trunk/; revision=44878
2012-09-11Bluetooth: Move HFP dissector from RFCOMM fileJakub Zawadzki4-60/+102
HFP is moved from RFCOMM where named HF. Then fix name to one used by SIG specification: HFP. Next step is improve dissection of HFP by dissect specific for this profile AT commands. From Michal Labedzki on behalf of Tieto Corporation Part of bug #7639 svn path=/trunk/; revision=44877
2012-09-11Differentiate between libnl versions. Feature parity with autofooJörg Mayer1-34/+57
for libnl. svn path=/trunk/; revision=44876
2012-09-11Upgrade LTE RRC dissector to v11.0.0Pascal Quantin5-10/+10
svn path=/trunk/; revision=44875
2012-09-11Add data parameter to dissector_try_uint_newJakub Zawadzki10-49/+50
svn path=/trunk/; revision=44874
2012-09-11Add new function: call_dissector_with_dataJakub Zawadzki3-3/+15
svn path=/trunk/; revision=44873
2012-09-11Add data parameter to call_dissector_only.Jakub Zawadzki21-55/+55
svn path=/trunk/; revision=44872