aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ppi.c
AgeCommit message (Collapse)AuthorFilesLines
2011-04-12Don't assign to a variable if the value won't be used: Coverity 1002 & 1003.Bill Meier1-3/+3
svn path=/trunk/; revision=36604
2010-12-20Rename the routines that handle dissector tables with unsigned integerGuy Harris1-2/+2
keys to have _uint in their names, to match the routines that handle dissector tables with string keys. (Using _port can confuse people into thinking they're intended solely for use with TCP/UDP/etc. ports when, in fact, they work better for things such as Ethernet types, where the binding of particular values to particular protocols are a lot stronger.) svn path=/trunk/; revision=35224
2010-11-19Remove a check_col();Bill Meier1-73/+70
Fix a typo; Minor whitespace cleanup. svn path=/trunk/; revision=34971
2010-11-18From Jon Ellch via bug #5175: Add PPI-GPS protocol dissector patchStephen Fisher1-5/+80
Minor changes by me as detailed in the bug's comment #8. svn path=/trunk/; revision=34956
2010-07-29Use ep-allocated strings for our data source names.Gerald Combs1-2/+2
svn path=/trunk/; revision=33676
2010-06-22Fix for bug 4852:Jaap Keuter1-16/+2
Don't short circuit dissection if tree==NULL when column values are to be set. svn path=/trunk/; revision=33282
2010-04-06#include <string.h> not needed.Bill Meier1-1/+0
svn path=/trunk/; revision=32410
2010-02-23Move the declarations of wtap_pcap_encap_to_wtap_encap() andGuy Harris1-1/+1
wtap_wtap_encap_to_pcap_encap() to wiretap/pcap-encap.h. Include it where it's needed; don't include other Wiretap headers where they're not needed. Include pcapng.h in pcapng.c, to declare the functions defined in pcapng.c. Add some casts to squelch some warnings, and add to a comment to indicate one of the problems. svn path=/trunk/; revision=31960
2009-11-17Remove the address operator from value_string arrays fed to VALS()Gerasimos Dimitriadis1-3/+3
svn path=/trunk/; revision=30995
2009-08-16Switch a bunch of dissectors over to using tvb_new_subset_remaining()Kovarththanan Rajaratnam1-2/+2
svn path=/trunk/; revision=29446
2009-08-09Don't guard col_clear with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29344
2009-08-09Don't guard col_set_str (COL_INFO) with col_checkKovarththanan Rajaratnam1-2/+1
svn path=/trunk/; revision=29342
2009-08-09Don't guard col_set_str (COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-4/+2
svn path=/trunk/; revision=29340
2009-07-23Set editor modelines to be consistent between emacs and vi/ex;Bill Meier1-163/+163
Indentation and whitespace cleanup; svn path=/trunk/; revision=29180
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-3/+3
(1) Trailing/leading spaces are removed from 'name's/'blurb's (2) Duplicate 'blurb's are replaced with NULL (3) Empty ("") 'blurb's are replaced with NULL (4) BASE_NONE, NULL, 0x0 are used for 'display', 'strings' and 'bitmask' fields for FT_NONE, FT_BYTES, FT_IPv4, FT_IPv6, FT_ABSOLUTE_TIME, FT_RELATIVE_TIME, FT_PROTOCOL, FT_STRING and FT_STRINGZ field types (5) Only allow non-zero value for 'display' if 'bitmask' is non-zero svn path=/trunk/; revision=28770
2009-05-13Apply some of the patches from:Anders Broman1-2/+1
http://wiki.wireshark.org/Development/Optimization svn path=/trunk/; revision=28356
2008-12-22Move wtap_pcap_encap_to_wtap_encap() and wtap_wtap_encap_to_pcap_encap()Guy Harris1-1/+2
back to libwiretap for now, as it's inherently tied to reading libpcap files; at some point we might want to have pcap-reading (and pcap-ng-reading?) code in a separate library, for use by, for example, dumpcap (and rawshark?). svn path=/trunk/; revision=27076
2008-12-08Updates for PPI 1.0.8.Gerald Combs1-28/+32
svn path=/trunk/; revision=26934
2008-10-31Fix some "format not a string literal and no format arguments" warnings.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=26648
2008-09-26Change emv -> evm, as noted in bug 2903.Stig Bjørlykke1-4/+4
svn path=/trunk/; revision=26275
2008-09-19Move wtap_pcap_encap_to_wtap_encap and wtap_wtap_encap_to_pcap_encap toGerald Combs1-9/+7
libwsutil. svn path=/trunk/; revision=26233
2008-06-24Add TurboCap-related changes from /trunk-1.0:Gerald Combs1-17/+146
From Dustin Johnson: Add support for TurboCap. - packet-ppi.c: Add aggregation and 802.3 extended information. - capture-wpcap.c: Add support for pcap_list_datalinks and pcap_set_datalink. Make pcap_list_datalinks and pcap_set_datalink mandatory on Windows. svn path=/trunk/; revision=25593
2008-03-10Change the BSD-licensed written by CACE to BSD+GPL.Gerald Combs1-0/+4
svn path=/trunk/; revision=24599
2008-02-07Removed even more "statement not reached" warnings.Stig Bjørlykke1-2/+0
svn path=/trunk/; revision=24286
2008-01-24Fix various small memory leaks & 1 invalid g_free (airpcap_gui_utils.c)Bill Meier1-1/+4
svn path=/trunk/; revision=24185
2007-08-22Move wtap_pcap_encap_to_wtap_encap()'s definition to libpcap.h so ↵Jeff Morriss1-4/+1
packet-ppi.c can get access to it even when we don't HAVE_LIBPCAP (besides, it doesn't seem to be specific to capturing...) svn path=/trunk/; revision=22591
2007-08-17Instead of converting between 802.11 frequencies and channels umpteenGerald Combs1-45/+15
different ways, add a set of common conversion routines. Add a "Frequency/Channel" column and fill it in where we can. Fix RSSI column printing in PPI. Fix up whitespace along the way. svn path=/trunk/; revision=22538
2007-06-26Add capture counts for PPI.Gerald Combs1-4/+43
svn path=/trunk/; revision=22195
2007-06-14Fix a bunch of errors found by gcc.Gerald Combs1-10/+7
svn path=/trunk/; revision=22096
2007-06-13Add support for PPI (the Per-Packet Information header), described atGerald Combs1-0/+1189
http://www.cacetech.com/documents/PPI_Header_format_1.0.pdf . svn path=/trunk/; revision=22094