History log of /external/scapy/scapy/layers/bluetooth.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
20a9b415a572d48748c3b2e91e07be908546d1ba 19-Jan-2018 Pierre LALET <pierre.lalet@cea.fr> Fix bluetooth constant
/external/scapy/scapy/layers/bluetooth.py
871d80ffa3eed46d249c1f7a291604736eb273d3 27-Oct-2017 gpotter2 <gabriel@potter.fr> Fix HCI_ACL_Hdr fields parsing
/external/scapy/scapy/layers/bluetooth.py
b296065b311c8d6d953caff739c4de51436f9524 19-Jun-2017 gpotter2 <gabriel@potter.fr> Several Bluetooth tests + fixes
/external/scapy/scapy/layers/bluetooth.py
ee48a6d0041ea98cdf00cbd5ae0dfe3955846709 29-Sep-2017 Pierre LALET <pierre.lalet@cea.fr> Python 3: fix bluetooth
/external/scapy/scapy/layers/bluetooth.py
d51edef8530fe1e944f13eb65ef863c2d7f04b1d 25-Apr-2017 gpotter2 <gabriel@potter.fr> Python 2 to 3: Exceptions, loops, isinstance and haskey
/external/scapy/scapy/layers/bluetooth.py
291400c1b6f65363e33cc982aaf0d43d31cc424e 25-Apr-2017 gpotter2 <gabriel@potter.fr> Remove longs and fix octals
/external/scapy/scapy/layers/bluetooth.py
63f75c596f4ca167b0f95e4401f8ec53866ad1f5 14-Apr-2017 gpotter2 <gabriel@potter.fr> Remove unused import
/external/scapy/scapy/layers/bluetooth.py
2a7ad0d13aaaa2a5358f82c67877856863a30d61 21-Mar-2017 gpotter2 <gabriel@potter.fr> Run auto parser
/external/scapy/scapy/layers/bluetooth.py
bd8f96a325729a319f1c9f4785a909cf26ac163a 21-Dec-2016 Pierre LALET <pierre.lalet@cea.fr> Remove double class declaration
/external/scapy/scapy/layers/bluetooth.py
004b9f8c3bbd7c9c738d980c9c187d6d5c2b52da 09-Aug-2016 susengold <susi2000@web.de> Import missing & mixup of psm status/result values in bluetooth.py #189 (#198)

* Fix missing import and mixup result / status in L2Cap Conn Resp

in scapy/layers/bluetooth.py

* Delete bluetooth.py

* fix missing import and mixup of result/status in L2Cap ConnResp

* Delete bluetooth.patch

* fixed missing import and mixup of result/status in L2Cap ConnResp

* Update bluetooth.py
/external/scapy/scapy/layers/bluetooth.py
6057906368d55634d11e1d19a5cca1f127595b11 01-Jun-2016 Robin Jarry <robin.jarry@6wind.com> Fix individual modules import

When using scapy as a third party library, we do not "benefit" from the
loading routine that puts all symbols in the __builtin__ namespace. This
implies that all modules must be "importable" without any errors for
undefined symbols.

This patch fixes importing every scapy module individually. Some
circular imports were fixed (between inet6 and dhcp6).

Most errors were detected by using pylint with the right configuration
(scapy produces a *lot* of errors). Other errors were detected with the
following shell script:

export PYTHONPATH=".:$PYTHONPATH"
for f in $(find scapy/ -name '*.py'); do
f=${f%/__init__.py}
module=$(echo ${f%.py} | sed 's,/,.,g')
python -c "import $module; print $module"
done

Also, replace all implicit relative imports by absolute imports to avoid
surprises with some python versions.

Signed-off-by: Robin Jarry <robin.jarry@6wind.com>
/external/scapy/scapy/layers/bluetooth.py
2c28f06d8260ef7af4ddeb1388c24ce14d70bd44 30-Jul-2016 Martijn Thé <martijnthe@users.noreply.github.com> Bluetooth: Add LE Connection Update command & event types (#234)
/external/scapy/scapy/layers/bluetooth.py
fcde3ea19f5d76ceefedbeb7d4844eb7b1ad3c02 17-Jun-2016 Taylor Trabun <ttrabun@isecpartners.com> Added packet types for L2CAP parameter update request/response and HCI CMD connection Update
/external/scapy/scapy/layers/bluetooth.py
62dfdbae03879bd0aa91e53cf340c9d2342da049 10-Jun-2016 Taylor Trabun <ttrabun@isecpartners.com> Added new packet types for SM and 128bit UUID Read by Type. Also added check in send command for BT socket that makes sure the type is of an event packet before looking for the code value to prevent periodic crashes when sending commands
/external/scapy/scapy/layers/bluetooth.py
1a99f355295116d8efd147c9a7a287f422fe928b 25-Apr-2016 Martijn Thé <martijn@pebble.com> Bluetooth: Add HCI Disconnect command
/external/scapy/scapy/layers/bluetooth.py
aa46295964be4173b9376ec3e020534c06e60ef7 25-Apr-2016 Martijn Thé <martijn@pebble.com> Bluetooth: add LE Create Connection Cancel packet
/external/scapy/scapy/layers/bluetooth.py
db7588259480ad72910e2b2c91af8c05b3df5ca9 12-Apr-2016 Martijn Thé <martijn@pebble.com> Bluetooth: add EIR / BLE Advertising packet classes
/external/scapy/scapy/layers/bluetooth.py
b1bbb57582eb809549cf4d40ee7c9efc286ab002 21-Nov-2014 richo@psych0tik.net <richo@psych0tik.net> Use a more specific exception for bluetooth errors
/external/scapy/scapy/layers/bluetooth.py
abc77e7ee00302fe0e9fa5f178986ec3ef9d083d 10-Oct-2014 Mike Ryan <mikeryan@lacklustre.net> add Phil back to copyright
/external/scapy/scapy/layers/bluetooth.py
571b6256fef1637ec49e5b9e41a5f434bdbf8014 09-Oct-2014 Mike Ryan <mikeryan@lacklustre.net> a few fixes to Bluetooth
/external/scapy/scapy/layers/bluetooth.py
9fc7b6097ae2e27142f04be61f8bc245bdfd8761 06-Aug-2014 Mike Ryan <mikeryan@lacklustre.net> bluetooth: implement many packet types for BLE and HCI_USER_SOCKET

Implement dozens of packet types for L2CAP, SM, ATT, and related. Also add
support for HCI_USER_SOCKET. With these packet types and special socket, it
becomes possible to implement much of a Bluetooth stack on top of scapy.
/external/scapy/scapy/layers/bluetooth.py
7b3e970663abd72697e17b70aba9943ae0dad404 30-Dec-2012 Phil <phil@secdev.org> Use conf.raw_layer to reference special layer "Raw" in place where it was not the case yet
/external/scapy/scapy/layers/bluetooth.py
0ce149b41a10223c75f33a135d0a7ddc6bd2e022 16-Jun-2010 Dirk Loss <mail@dirk-loss.de> Added (simple) module-level docstrings for all modules
/external/scapy/scapy/layers/bluetooth.py
d88f0f11dea1e9f05b91b1fa2eb1eb4163a731fc 14-Jun-2009 Phil <phil@secdev.org> Changed default MTU to be 32767 and made supersocket.recv() argument optional
/external/scapy/scapy/layers/bluetooth.py
4fa90e6f14727287650ad46d599e4634b41a16dc 14-Jun-2009 Phil <phil@secdev.org> Changed sndrcv() interal function to stop returning unused third packet list
/external/scapy/scapy/layers/bluetooth.py
d5db227c01d234f218caf2a66d59976fae77f08c 28-Aug-2008 Phil <phil@secdev.org> Added __repr__() to supersockets
/external/scapy/scapy/layers/bluetooth.py
6ed86650fa6420bd015ff615dfd3d51aaaeceb07 10-Aug-2008 Phil <phil@secdev.org> Reintroduced lsc() command
/external/scapy/scapy/layers/bluetooth.py
3e4ead4b7b6d9ae5ac4b4cf4c1333a116f8a2d15 28-Jul-2008 Phil <phil@secdev.org> Add banners
/external/scapy/scapy/layers/bluetooth.py
7303a9e37380d531b1488d425c1c5069a3b8b0fd 01-Jul-2008 Phil <phil@secdev.org> Fixed imports for layers
/external/scapy/scapy/layers/bluetooth.py
bb2ddd8ef0416706e645595b6b5484ee4f409ad3 23-May-2008 Phil <phil@secdev.org> Split Scapy!

--HG--
rename : scapy.py => scapy/__init__.py
rename : scapy.py => scapy/ansmachine.py
rename : scapy.py => scapy/arch.py
rename : scapy.py => scapy/asn1.py
rename : scapy.py => scapy/asn1fields.py
rename : scapy.py => scapy/asn1packet.py
rename : scapy.py => scapy/automaton.py
rename : scapy.py => scapy/autorun.py
rename : scapy.py => scapy/ber.py
rename : scapy.py => scapy/config.py
rename : scapy.py => scapy/dadict.py
rename : scapy.py => scapy/data.py
rename : scapy.py => scapy/error.py
rename : scapy.py => scapy/fields.py
rename : scapy.py => scapy/geoip.py
rename : scapy.py => scapy/layers/__init__.py
rename : scapy.py => scapy/layers/bluetooth.py
rename : scapy.py => scapy/layers/dhcp.py
rename : scapy.py => scapy/layers/dns.py
rename : scapy.py => scapy/layers/dot11.py
rename : scapy.py => scapy/layers/gprs.py
rename : scapy.py => scapy/layers/hsrp.py
rename : scapy.py => scapy/layers/inet.py
rename : scapy.py => scapy/layers/ip6.py
rename : scapy.py => scapy/layers/ir.py
rename : scapy.py => scapy/layers/isakmp.py
rename : scapy.py => scapy/layers/l2.py
rename : scapy.py => scapy/layers/l2tp.py
rename : scapy.py => scapy/layers/mgcp.py
rename : scapy.py => scapy/layers/mobileip.py
rename : scapy.py => scapy/layers/netbios.py
rename : scapy.py => scapy/layers/netflow.py
rename : scapy.py => scapy/layers/ntp.py
rename : scapy.py => scapy/layers/ppp.py
rename : scapy.py => scapy/layers/radius.py
rename : scapy.py => scapy/layers/rip.py
rename : scapy.py => scapy/layers/rtp.py
rename : scapy.py => scapy/layers/sebek.py
rename : scapy.py => scapy/layers/skinny.py
rename : scapy.py => scapy/layers/smb.py
rename : scapy.py => scapy/layers/snmp.py
rename : scapy.py => scapy/layers/tftp.py
rename : scapy.py => scapy/layers/x509.py
rename : scapy.py => scapy/main.py
rename : scapy.py => scapy/mib.py
rename : scapy.py => scapy/nmap.py
rename : scapy.py => scapy/p0f.py
rename : scapy.py => scapy/packet.py
rename : scapy.py => scapy/plist.py
rename : scapy.py => scapy/queso.py
rename : scapy.py => scapy/route.py
rename : scapy.py => scapy/sendrecv.py
rename : scapy.py => scapy/supersocket.py
rename : scapy.py => scapy/themes.py
rename : scapy.py => scapy/utils.py
rename : scapy.py => scapy/voip.py
rename : scapy.py => scapy/volatile.py
/external/scapy/scapy/layers/bluetooth.py