summaryrefslogtreecommitdiff
path: root/serial
Commit message (Collapse)AuthorAgeFilesLines
* Move debug() to DBG()Gustavo F. Padovan2010-05-212-12/+12
| | | | Use the new dynamic debug feature
* Remove old defines from serial codeGustavo F. Padovan2010-05-212-10/+0
|
* Move logging.{c,h} to log.{c,h}Gustavo F. Padovan2010-05-213-3/+3
| | | | Try to make log stuff more similar to ConnMan and oFono.
* Update copyright informationMarcel Holtmann2010-01-017-7/+7
|
* Fix memory leaksSteve Grubb2009-10-021-0/+2
| | | | | I was doing some code reviews of the 4.54 release and found a few memory leaks. These are mostly in error paths.
* Switch to a full non-recursive build systemMarcel Holtmann2009-08-231-19/+0
|
* Make all major plugins builtin to simplify debuggingMarcel Holtmann2009-08-092-10/+4
|
* Fix serial proxy record info attributesJohan Hedberg2009-07-281-2/+1
|
* Use 16/32-bit UUID if possible in serial proxy recordsJohan Hedberg2009-07-281-0/+1
|
* Track sender of CreateProxy.Luiz Augusto von Dentz2009-07-271-50/+83
| | | | Only proxies created by serial.conf should be persistent.
* Remove the serial storage functionalityForrest Zhao2009-07-274-262/+7
| | | | | | This functionality isn't needed anymore now that we have serial.conf. Proxies created through the D-Bus interface will always be temporary not remembered after a bluetoothd restart.
* Fix whitespaceJohan Hedberg2009-07-241-1/+1
|
* Add support for multiple serial proxies configurationForrest Zhao2009-07-243-60/+180
|
* Fix whitespace issueJohan Hedberg2009-06-301-1/+1
|
* Fix open() error checkJohan Hedberg2009-06-301-1/+1
|
* Use (safer) strncpy instead of strcpyJohan Hedberg2009-06-301-2/+3
|
* Fix NULL check in find_port() for port->uuidJohan Hedberg2009-06-301-0/+3
|
* Make serial plugin to use adapter references.Luiz Augusto von Dentz2009-05-273-34/+42
|
* Fix address variable typeJohan Hedberg2009-05-021-1/+1
|
* Fix bt_cancel_discovery to not call callback.Luiz Augusto von Dentz2009-04-301-1/+4
| | | | | bt_cancel_discovery when disconnecting async and calling the callback which cause crashes if the user data is free'd in between.
* Fix bug on Serial.Connect which cause UUID-128 to be interpreted as channel.Luiz Augusto von Dentz2009-04-241-5/+10
| | | | | strtol was generating a valid channel from the given UUID-128 and find_port would first check if the port channel matches the given pattern.
* Using # operator to stringify plugin name.Alok Barsode2009-04-211-1/+1
|
* Add priority field to plugin descriptor definition and load plugins in ↵Alok Barsode2009-04-211-1/+2
| | | | priority order.
* Fix uninitialized variable compiler warningJohan Hedberg2009-04-191-1/+3
|
* Add support to channel pattern in Serial interface.Luiz Augusto von Dentz2009-04-151-8/+48
| | | | | | Application can give RFCOMM channel as pattern for Serial.Connect and Serial.Disconnect, in case of no service matching the given channel it wont trigger the channel discover proceeding directly to connection phase.
* Make Serial.Disconnect to abort connection attempt.Luiz Augusto von Dentz2009-04-141-11/+21
| | | | | Serial.Disconnect should abort connection attempt if Serial.Connect is not completed or user application quits before connection is done.
* Make serial port to not use channels from record storage.Luiz Augusto von Dentz2009-04-111-14/+80
| | | | | | Some devices are known to change the channels of its records so the storage might become invalid over time. The solution is to always attempt to retrieve the channel when connecting.
* Make serial proxy to use confirm callback.Luiz Augusto von Dentz2009-04-011-46/+126
|
* Add support of friendly name UUIDs for SerialProxyManager.Luiz Augusto von Dentz2009-04-011-21/+22
|
* Convert some not-so-important info logs to debug logsJohan Hedberg2009-03-242-5/+5
|
* Be sure to remove the name listener in serial_port_freeJohan Hedberg2009-03-231-0/+6
|
* Adding version check for plugins.Alok Barsode2009-03-141-1/+1
|
* Use GCC visibility for exporting symbolsMarcel Holtmann2009-03-111-5/+5
|
* Remove unused functionJohan Hedberg2009-02-252-34/+0
|
* Fix bt_io_get parameter passingJohan Hedberg2009-02-221-1/+1
|
* Make use of g_io_channel_shutdown instead of deprecated g_io_channel_close.Luiz Augusto von Dentz2009-02-192-3/+3
|
* Make serial plugin to use BtIO API.Luiz Augusto von Dentz2009-02-192-27/+56
|
* Fix mostly every warning caused by -Wsign-compareMarcel Holtmann2009-01-292-2/+4
|
* Update copyright informationMarcel Holtmann2009-01-019-9/+9
|
* Add missing include definitionsMarcel Holtmann2008-12-232-0/+2
|
* Remove old serial-api.txt documentation fileMarcel Holtmann2008-12-222-178/+0
|
* Revert previous change to g_timeout_add_secondsJohan Hedberg2008-12-151-2/+2
| | | | | These timeouts really need to be sub-second so g_timeout_add_seconds can't be used.
* Convert two more users to g_timeout_add_seconds()Marcel Holtmann2008-12-101-2/+3
|
* Disallow Serial.Disconnect from unauthorized senders.Luiz Augusto von Dentz2008-12-011-1/+6
|
* Store RFCOMM tty fd and close it before releaseJohan Hedberg2008-11-081-0/+8
|
* Fix driver removal for serial port driver.Luiz Augusto von Dentz2008-11-073-14/+7
| | | | | | Because of the last changes serial port driver would not remove all ports registered on probe just the one registered with serial port uuid if registered.
* Make serial driver to register RFCOMM UUID.Luiz Augusto von Dentz2008-11-071-3/+3
| | | | | This will make serial driver to get probed for any record which has RFCOMM UUID.
* Rename bt_string2class to bt_name2class and introduce bt_name2string.Luiz Augusto von Dentz2008-11-061-13/+1
| | | | | | | Since bt_string2class didn't work for UUID128 in string format the name got changed to be more suggestive. bt_name2string was introduced to prevent potential use of bt_string2uuid followed with bt_uuid2string which turns to do the same conversion twice.
* Use bt_string2class instead of bt_string2uuid to avoid unecessary conversionJohan Hedberg2008-11-061-1/+6
|
* Add OBEX UUIDs to the serial serviceJohan Hedberg2008-11-061-1/+4
|