aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aruba-erm.c
AgeCommit message (Collapse)AuthorFilesLines
2014-03-15Fix compilation of packet-aruba-erm.cPascal Quantin1-2/+2
Change-Id: I30bef3eb92e1bdf67e4a3019ef3542e14ac9505c Reviewed-on: https://code.wireshark.org/review/669 Reviewed-by: Pascal Quantin <pascal.quantin@gmail.com>
2014-03-15Enhance dissector Aruba ERMAlexis La Goutte1-64/+131
Support type 0 (legacy), type 1 (peek), type 3 (pcap+radio) mode via preference type 2 (airmagnet) is no yet supported Change-Id: I4f0d10e5d9b87bdcf5863d84e565201acaeee45b Reviewed-on: https://code.wireshark.org/review/647 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Hadriel Kaplan <hadrielk@yahoo.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-13Add support for Aruba ERM Radio-FormatHadriel Kaplan1-10/+97
This adds support for a variant of the current Aruba ERM format, a new format that provides rdio information. This addresses enhancment bug 9880. Change-Id: Ia38ff09d9f814193bdc544466dbd005123771262 Reviewed-on: https://code.wireshark.org/review/629 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-03-04Remove all $Id$ from top of fileAlexis La Goutte1-2/+0
(Using sed : sed -i '/^ \* \$Id\$/,+1 d') Fix manually some typo (in export_object_dicom.c and crc16-plain.c) Change-Id: I4c1ae68d1c4afeace8cb195b53c715cf9e1227a8 Reviewed-on: https://code.wireshark.org/review/497 Reviewed-by: Anders Broman <a.broman58@gmail.com>
2014-02-10Fix indent (Use 4 spaces and modelines info)Alexis La Goutte1-0/+12
Change-Id: If816b474634dd72ad75931e8803ba1bdfb6b1143 Reviewed-on: https://code.wireshark.org/review/165 Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
2013-08-28packet-aruba-erm.c:136: warning: 'range_add_callback' defined but not usedAnders Broman1-11/+0
svn path=/trunk/; revision=51568
2013-08-28Use dissector_delete_uint_range/dissector_add_uint_rangeAnders Broman1-1/+2
svn path=/trunk/; revision=51567
2013-03-13- [-Wmissing-prototypes]Anders Broman1-1/+0
- explicit casts. svn path=/trunk/; revision=48282
2013-03-12- [-Wmissing-prototypes]Anders Broman1-0/+3
- explicit casts. svn path=/trunk/; revision=48274
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-3/+1
svn path=/trunk/; revision=45017
2011-10-21For proto_tree_add_item(..., proto_xxx, ...)use ENC_NA as the encoding arg.Bill Meier1-1/+1
Also: remove trailing whitespace for a number of files. svn path=/trunk/; revision=39503
2011-10-06Convert 'encoding' parameter of certain proto_tree_add_item() calls in ↵Bill Meier1-2/+2
non-autogenerated epan/dissectors: Specifically: Replace FALSE|0 and TRUE|1 by ENC_BIG_ENDIAN|ENC_LITTLE_ENDIAN as the encoding parameter for proto_tree_add_item() calls which directly reference an item in hf[] which has a type of: FT_UINT8 FT_UINT16 FT_UINT24 FT_UINT32 FT_UINT64 FT_INT8 FT_INT16 FT_INT24 FT_INT32 FT_INT64 FT_FLOAT FT_DOUBLE svn path=/trunk/; revision=39288
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-05-10Indentation & whitespace cleanup (including: "4 space tabs" ==> spaces)Bill Meier1-1/+1
svn path=/trunk/; revision=32735
2010-04-24Make the absolute_time_display_e enum start at 1000 to avoid overlapping withJeff Morriss1-8/+8
the base_display_e enum. Fix a couple of dissectors that were still using FT_ABSOLUTE_TIME with BASE_NONE. (The time format chosen is based only on an attempt to not change the behavior. I don't know that it's right.) One of these is built by Pidl. I'll send a patch upstream too. When checking hfinfos, display the absolute_time_display_e values too. Display "bit count: X" instead of "unknown" when the display value doesn't match one of the enumerated values. svn path=/trunk/; revision=32552
2010-01-24From Alexis La Goutte via bug 4418:Stig Bjørlykke1-0/+159
Aruba Wireless Controller support a Remote Monitoring of Access Point The code is based en HP ERM/Cisco ERSPAN dissectors svn path=/trunk/; revision=31645