aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_evt.c
AgeCommit message (Collapse)AuthorFilesLines
2012-03-12Use consistent indentation;Bill Meier1-2599/+2599
Do minor reformatting. svn path=/trunk/; revision=41503
2012-01-24From Michal Labedzki via ↵Jeff Morriss1-40/+100
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6739 : Update company ids and HCI/LMP versions to the latest Assigned Numbers I made the cosmetic changes: - simplify version description - I updated all company ids from Assigned Numbers, so there are some very small differences with old version (inadvertently) Based on: https://www.bluetooth.org/Technical/AssignedNumbers/hci.htm https://www.bluetooth.org/Technical/AssignedNumbers/link_manager.htm https://www.bluetooth.org/technical/assignednumbers/identifiers.htm From me: list the above URLs in comments in the code. svn path=/trunk/; revision=40681
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-19Fix Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-2/+4
svn path=/trunk/; revision=39481
2011-10-18Display filter name cleanup.Chris Maynard1-6/+6
svn path=/trunk/; revision=39452
2011-10-15Convert proto_tree_add_item() 'encoding' arg for field types FT_STRING, ↵Bill Meier1-3/+3
FT_STRINGZ, FT_UINT_STRING as follows: 1. If there's no character encoding (ENC_ASCII, ...) specified then use ENC_ASCII. 2. For all but FT_UINT_STRING, always use ENC_NA (replacing any existing True/1/FALSE/0 /ENC_BIG_ENDIAN/ENC_LITTLE_ENDIAN). svn path=/trunk/; revision=39426
2011-10-04Use ENC_NA as encoding for proto_tree_add_item() calls which directly ↵Bill Meier1-8/+8
reference an hf item (in hf[] with types: FT_NONE FT_BYTES FT_IPV6 FT_IPXNET FT_OID Note: Encoding field set to ENC_NA only if the field was previously TRUE|FALSE|ENC_LITTLE_ENDIAN|ENC_BIG_ENDIAN svn path=/trunk/; revision=39260
2011-09-26Get rid of check_col, while at it set ENC.Anders Broman1-341/+338
svn path=/trunk/; revision=39146
2011-04-19From Michael Mann via bug 2794:Stig Bjørlykke1-1/+1
Fixed display filters with obvious typos. svn path=/trunk/; revision=36713
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-29From Andrei Emeltchenko:Anders Broman1-1/+2
Wrong link type in a packet(bluethouth). https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5449 svn path=/trunk/; revision=35064
2010-11-03Use value_string_ext fcns to access certain value_string arrays;Bill Meier1-12/+12
Sort several value_string arrays to be in ascending order. Also: Minor whitespace cleanup. svn path=/trunk/; revision=34766
2009-11-04Also apply rev 30817 to command complete eventsKovarththanan Rajaratnam1-0/+2
svn path=/trunk/; revision=30818
2009-11-04Append the opcode (that lead us to the command status) to the info columnKovarththanan Rajaratnam1-1/+6
svn path=/trunk/; revision=30817
2009-11-04Correct "Sniff Subrating" typoKovarththanan Rajaratnam1-111/+111
svn path=/trunk/; revision=30816
2009-08-09Don't guard col_set_str (COL_INFO/COL_PROTOCOL) with col_checkKovarththanan Rajaratnam1-3/+1
svn path=/trunk/; revision=29345
2009-07-07From Kovarththanan Rajaratnam:Stig Bjørlykke1-1/+1
More FT_XXX cleanup. svn path=/trunk/; revision=28971
2009-06-18From Kovarththanan Rajaratnam via bug 3548:Stig Bjørlykke1-145/+145
(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
2008-12-18Fix various typos and spelling errors (mostly in text strings)Bill Meier1-3/+3
svn path=/trunk/; revision=27050
2008-10-31Fix some "format not a string literal and no format arguments" warnings.Stig Bjørlykke1-1/+1
svn path=/trunk/; revision=26646
2008-03-01Rewrote to use g_strlcpy and g_strlcat.Stig Bjørlykke1-11/+11
svn path=/trunk/; revision=24525
2008-02-03From Shane Kearns (bug 2237):Stig Bjørlykke1-0/+1
Added support for Symbian OS btsnoop. The bluetooth HCI layer in Symbian OS can be configured to log all packets to a file. The log format, "btsnoop" is based on the RFC1761 "snoop" format - but differences in the header make it incompatible. The btsnoop format supports logging of these formats: "H1" (raw HCI packets without framing) "H4" (HCI UART packets including packet type header) "H5" (HCI 3 wire UART packets including framing) "BCSP" (HCI bluecore serial protocol including framing) "H1" and "H4" are section numbers in the original v1 bluetooth specifications, but still used colloquially - wireshark's existing support for Linux bluez HCI logs uses the "H4" name. In practice, the "H1" format is used for H5,BCSP and USB HCI logs, as the HCI packet logs are mainly useful for debugging higher layers, bluetooth profiles and bluetooth applications. From me: Deleted some unused prototypes. Mark an unused parameter. svn path=/trunk/; revision=24263
2008-02-02Rewrote some prohibited APIs in epan/dissectors/ (sprintf, strcpy, strcat).Stig Bjørlykke1-11/+11
If we get some truncated strings we probably overwrote some buffers... svn path=/trunk/; revision=24249
2007-09-23From Allan M. Madsen:Jaap Keuter1-123/+1471
Wireshark is only supporting a very old and deprecated version of the Bluetooth specification (1.1). The Bluetooth SIG recently ratified version 2.1 of the Bluetooth specification and a lot of enhancements have been added to the specification. The HCI dissectors needs a major update to match these changes. svn path=/trunk/; revision=22924
2006-05-21change a whole bunch of ethereal into wiresharkRonnie Sahlberg1-4/+4
svn path=/trunk/; revision=18196
2006-05-14add bluetooth acl dissectionRonnie Sahlberg1-1/+3
the fragment reassembly from the old patch is commented out since it has to be redone completely using emem and se_trees the proper way. but to do this i would need example captures of fragmented bluetooth traffic first. svn path=/trunk/; revision=18149
2006-05-14checkin the correct hci evt dissectorRonnie Sahlberg1-0/+2195
svn path=/trunk/; revision=18146