114033a2 | 12-Jun-2015 |
Hannes Ellinger <[email protected]> |
afh: implement optimized generation of hopping sequence with support for AFH |
f1965e4d | 12-Jun-2015 |
Hannes Ellinger <[email protected]> |
afh: add AFH support for faster hopping pattern detection |
871ad2c0 | 26-May-2015 |
Theodore A. Roth <[email protected]> |
pcapng: Eliminate/Document some magic numbers.
* The magic number of 36 used when calculating the block_length represents the size of the 'Enhanced Packet Block' in pcapng (excluding the data pa
pcapng: Eliminate/Document some magic numbers.
* The magic number of 36 used when calculating the block_length represents the size of the 'Enhanced Packet Block' in pcapng (excluding the data packet itself). Replace the magic number with a macro. See http://www.winpcap.org/ntar/draft/PCAP-DumpFileFormat.html#sectionepb
* The magic number of 9 added to the caplen represents the extra bytes of a BLE link layer packet outside of the PDU payload. Added a comment to identify what those extra 9 bytes represent.
show more ...
|
1ce7419b | 26-May-2015 |
Theodore A. Roth <[email protected]> |
Fix buffer overflow in assemble_pcapng_le_packet().
The pcapng_le_packet structure did not allocate enough storage to contain the OPTIONS and BLOCK_TOTAL_LENGTH fields at the end of the pcapng enhan
Fix buffer overflow in assemble_pcapng_le_packet().
The pcapng_le_packet structure did not allocate enough storage to contain the OPTIONS and BLOCK_TOTAL_LENGTH fields at the end of the pcapng enhanced block structure (see http://www.winpcap.org/ntar/draft/PCAP-DumpFileFormat.html#sectionepb).
* Added fields to pcapng_le_packet structure for options and length along with two bytes of padding to allow for 32 bit alignment of options and length fields. * Added assert() to catch cases of potential buffer overflow.
This fixes the following bug report in ubertooth project: https://github.com/greatscottgadgets/ubertooth/issues/56
show more ...
|
3d48a6e2 | 04-May-2015 |
Dominic Spill <[email protected]> |
Merge pull request #17 from troth/fix-pkg-config
cmake: Fix libbtbb.pc.in. |
39524c59 | 04-May-2015 |
Theodore A. Roth <[email protected]> |
cmake: Fix libbtbb.pc.in.
The @prefix@, @exec_prefix@, @libdir@ and @includedir@ variables are not set by cmake. Set the values in the libbtbb.pc.in file by including the GNUInstallDirs.cmake file i
cmake: Fix libbtbb.pc.in.
The @prefix@, @exec_prefix@, @libdir@ and @includedir@ variables are not set by cmake. Set the values in the libbtbb.pc.in file by including the GNUInstallDirs.cmake file in CMakeLists.txt. This creates the CMAKE_INSTALL_LIBDIR and CMAKE_INSTALL_INCLUDEDIR variables.
This change allows user to configure for installing into non-standard locations as such:
mkdir build cd build cmake -DCMAKE_INSTALL_PREFIX=$HOME/local ..
show more ...
|
a3df4d72 | 23-Mar-2015 |
Dominic Spill <[email protected]> |
Fix pcap cmake optionato be ON/OFF default is on, but it is not an error if pcap is not found |
43ef8082 | 21-Mar-2015 |
Dominic Spill <[email protected]> |
Remove hacky pcap flag |
1a7f7403 | 20-Mar-2015 |
Dominic Spill <[email protected]> |
Modify btbb.h based on pcap support - To inform ubertooth / gr-bluetooth pcap support |
133c5fa2 | 18-Mar-2015 |
Dominic Spill <[email protected]> |
Add USE_PCAP flag to enable/disable PCAP |
07293f9e | 18-Mar-2015 |
Dominic Spill <[email protected]> |
Add transport getter functions to btbb for pcaps |
c79c92da | 18-Mar-2015 |
Dominic Spill <[email protected]> |
Print error when unable to allocate packet |
76d46d8b | 06-Mar-2015 |
Dominic Spill <[email protected]> |
Check for failed malloc() before writing to struct |
1f3ebb40 | 04-Mar-2015 |
Dominic Spill <[email protected]> |
Use popcount if we're building with gcc |
13fc573a | 03-Mar-2015 |
Dominic Spill <[email protected]> |
Add header test |
abf0b3ef | 03-Mar-2015 |
Dominic Spill <[email protected]> |
Update uthash version |
cd0a445c | 12-Dec-2014 |
Dominic Spill <[email protected]> |
Remove Debian packaging files - they conflict with other versions of the files
|
f83b85cf | 26-Nov-2014 |
Dominic Spill <[email protected]> |
Add modulation/transport to packet data - This should improve our mapping from packet -> pcap |
95079a24 | 25-Nov-2014 |
Dominic Spill <[email protected]> |
Set max payload length based on packet type - Also added #defines for packet type values |
0e05cc66 | 23-Nov-2014 |
Dominic Spill <[email protected]> |
Tidy / fix some PCAP / PCAPNG formatting code |
cad66bd6 | 23-Nov-2014 |
Dominic Spill <[email protected]> |
Add Wireshark dissestor for BT BR/EDR Baseband PCAP format |
122fe8aa | 15-Nov-2014 |
Dominic Spill <[email protected]> |
Remove unused cmake code for finding previous installations |
58df5073 | 15-Nov-2014 |
Dominic Spill <[email protected]> |
Add missing version files - Github issue #12 |
f94106ab | 14-Nov-2014 |
Dominic Spill <[email protected]> |
Add forgotten cmake module to git - This *may* have been part of my testing method |
c7ad5415 | 14-Nov-2014 |
Dominic Spill <[email protected]> |
Use cmake modules to alter the git commit hash when rebuilding - as opposed to re-configuring |