summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Make the ReverseServiceDiscovery option more visibleJohan Hedberg2009-01-132-2/+9
| | | | | Add it to the default main.conf file with a proper comment and print a debug message is it's found to be missing.
* Don't remove linkkeys upon adapter removalJohan Hedberg2009-01-133-5/+7
|
* Allow choosing of MITM for new pairing functionMarcel Holtmann2009-01-131-1/+4
|
* Coding style fixesJohan Hedberg2009-01-131-12/+15
|
* Add ReverseServiceDiscovery config optionJohan Hedberg2009-01-133-1/+12
| | | | | This option is solely for qualification since the BITE tester in its grand braindeadness doesn't like use doing reverse SDP.
* Coding style fixesJohan Hedberg2009-01-131-76/+102
|
* Add debug statement for reverse service discovery timerMarcel Holtmann2009-01-131-0/+1
|
* Don't do reverse SDP for renewed link keysJohan Hedberg2009-01-133-2/+19
| | | | | | Add a flag for a renewed link key to the device struct so that when we get authentication complete we don't do reverse SDP or PropertyChanged(Paired, true) if a new bonding isn't being created.
* Only handle the special case of no bonding and no MITMMarcel Holtmann2009-01-131-2/+2
|
* Follow MITM requirements from remote deviceMarcel Holtmann2009-01-131-0/+4
|
* Clear authentication info upon disconnectJohan Hedberg2009-01-131-0/+3
|
* Fix no-bonding connections in non-bondable modeJohan Hedberg2009-01-131-1/+8
|
* Fix new pairing detection with SSPJohan Hedberg2009-01-133-4/+12
| | | | | Propagate old and new link key type info to dbus-hci.c so it can know whether this is a new pairing or not.
* Fix dbus_connection_ref/unref usageJohan Hedberg2009-01-132-1/+4
|
* Add more debug for authentication requirementsMarcel Holtmann2009-01-131-1/+6
|
* RemoveDevice() should also update adapter->connectionsJohan Hedberg2009-01-131-0/+1
|
* Add command option for triggering dedicated bondingMarcel Holtmann2009-01-131-2/+55
|
* Fix bug on sdp_copy_record.Luiz Augusto von Dentz2009-01-121-1/+5
| | | | sdp_copy_record where not copying uuid data correctly.
* Move l2raw_connect over to device.c (since it's not needed anywhere else)Johan Hedberg2009-01-123-77/+65
|
* Add support for dedicated bonding using BT_SECURITYJohan Hedberg2009-01-123-7/+29
|
* Add BT_SECURITY and BT_DEFER_SETUP definitionsMarcel Holtmann2009-01-121-4/+15
|
* Handle active connection using device object.Luiz Augusto von Dentz2009-01-115-186/+149
|
* Move bonding creation to device.c.Luiz Augusto von Dentz2009-01-115-1023/+784
|
* Make audio plugin to use audio_device sufix instead of device_.Luiz Augusto von Dentz2009-01-083-9/+11
| | | | To prevent future name clashes with btd_device API.
* Fix a bogus pointer crash that occurred when reconnecting A2DP.Mike Lockwood2009-01-081-0/+1
|
* Release 4.264.26Marcel Holtmann2009-01-082-1/+9
|
* Allow ATA to be used for calls in WAITING state tooJohan Hedberg2009-01-081-0/+3
|
* Another fix to AT+CHLD=2Johan Hedberg2009-01-081-3/+3
| | | | | | Swap() can't actually be used for calls in WAITING state. Instead simply call Answer() for a waiting call and it will automatically put any previously active call on hold.
* Also release waiting calls upon AT+CHLD=0Johan Hedberg2009-01-081-0/+2
|
* Catch errors properly in telephony_call_hold_reqJohan Hedberg2009-01-081-7/+6
|
* Fix AT+CHLD=3 as wellJohan Hedberg2009-01-081-1/+18
| | | | | AT+CHLD=3 should use the special Conference() D-Bus method instead of Unhold().
* Fix AT+CHLD=2 behaviorJohan Hedberg2009-01-081-2/+34
|
* Fix for big endian problems in SBC codecSiarhei Siamashka2009-01-071-12/+0
|
* Fix use of invalid pointerJohan Hedberg2009-01-071-1/+3
|
* Remove double semicolonJohan Hedberg2009-01-071-1/+1
|
* Fix client socket to always be non-blocking.Luiz Augusto von Dentz2009-01-061-0/+1
| | | | | | Accourding to accept man page it does not inherit flags from listening socket. This mean that any operation in the socket generated by accept may block which can render the daemon unresponsive.
* Fixed correct handling of frame sizes in the encoderChristian Hoene2009-01-063-5/+7
|
* Use of constant shift in SBC quantization code to make it fasterSiarhei Siamashka2009-01-061-10/+13
| | | | | | | | | The result of 32x32->64 unsigned long multiplication is returned in two registers (high and low 32-bit parts) for many 32-bit architectures. For these architectures constant right shift by 32 bits is optimized out by the compiler to just taking the high 32-bit part. Also some data needed at the quantization stage is precalculated beforehand to improve performance.
* Update copyright informationMarcel Holtmann2009-01-01201-208/+208
|
* Added possibility to analyze 4 blocks at once in SBC encoderSiarhei Siamashka2009-01-011-49/+82
| | | | | | | | | | | This change is needed for SIMD optimizations which will follow shortly. And even for non-SIMD capable platforms it still may be useful to have possibility to merge several analyzing functions together into one for better code scheduling or reusing loaded constants. Also analysis filter functions are now called using function pointers, which allows the default implementation to be overrided at runtime (with high precision variant or MMX/SSE2/NEON optimized code).
* Fix spelling mistakesMarcel Holtmann2008-12-302-2/+2
|
* Add directory for client applicationMarcel Holtmann2008-12-293-2/+5
|
* Release 4.254.25Marcel Holtmann2008-12-292-1/+6
|
* Remove usage of MSG_WAITALL from pcm_bluetooth.c as wellJohan Hedberg2008-12-291-1/+1
|
* Fix receiving data over the unix socketJohan Hedberg2008-12-291-1/+1
| | | | | Don't use MSG_WAITALL since we can (and often will) receive less data than MTU with the new IPC.
* New SBC analysis filter function to replace current broken codeSiarhei Siamashka2008-12-293-244/+323
| | | | | | | | | | | | | | This code is heavily based on the patch submitted by Jaska Uimonen. Additional changes include preserving extra bits in the output of filter function for better precision, support for both 16-bit and 32-bit fixed point implementation. Sign of some table values was changed in order to preserve a regular code structure and have multiply-accumulate oparations only. No additional optimizations were applied as this code is intended to be some kind of "reference" implementation. Platform specific optimizations may require different tricks and can be branched off from this implementation. Some extra information about this code can be found in linux-bluetooth mailing list archive for December 2008.
* Fixed subbands selection for joint-stereo in SBC encoderSiarhei Siamashka2008-12-291-4/+4
|
* Release 4.244.24Marcel Holtmann2008-12-252-1/+9
|
* Check if path is valid before unregistering itRaymond Liu2008-12-241-0/+3
|
* Add more options to control encoding methodsMarcel Holtmann2008-12-231-16/+51
|