Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Move debug() to DBG() | Gustavo F. Padovan | 2010-05-21 | 2 | -12/+12 |
| | | | | Use the new dynamic debug feature | ||||
* | Remove old defines from serial code | Gustavo F. Padovan | 2010-05-21 | 2 | -10/+0 |
| | |||||
* | Move logging.{c,h} to log.{c,h} | Gustavo F. Padovan | 2010-05-21 | 3 | -3/+3 |
| | | | | Try to make log stuff more similar to ConnMan and oFono. | ||||
* | Update copyright information | Marcel Holtmann | 2010-01-01 | 7 | -7/+7 |
| | |||||
* | Fix memory leaks | Steve Grubb | 2009-10-02 | 1 | -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 system | Marcel Holtmann | 2009-08-23 | 1 | -19/+0 |
| | |||||
* | Make all major plugins builtin to simplify debugging | Marcel Holtmann | 2009-08-09 | 2 | -10/+4 |
| | |||||
* | Fix serial proxy record info attributes | Johan Hedberg | 2009-07-28 | 1 | -2/+1 |
| | |||||
* | Use 16/32-bit UUID if possible in serial proxy records | Johan Hedberg | 2009-07-28 | 1 | -0/+1 |
| | |||||
* | Track sender of CreateProxy. | Luiz Augusto von Dentz | 2009-07-27 | 1 | -50/+83 |
| | | | | Only proxies created by serial.conf should be persistent. | ||||
* | Remove the serial storage functionality | Forrest Zhao | 2009-07-27 | 4 | -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 whitespace | Johan Hedberg | 2009-07-24 | 1 | -1/+1 |
| | |||||
* | Add support for multiple serial proxies configuration | Forrest Zhao | 2009-07-24 | 3 | -60/+180 |
| | |||||
* | Fix whitespace issue | Johan Hedberg | 2009-06-30 | 1 | -1/+1 |
| | |||||
* | Fix open() error check | Johan Hedberg | 2009-06-30 | 1 | -1/+1 |
| | |||||
* | Use (safer) strncpy instead of strcpy | Johan Hedberg | 2009-06-30 | 1 | -2/+3 |
| | |||||
* | Fix NULL check in find_port() for port->uuid | Johan Hedberg | 2009-06-30 | 1 | -0/+3 |
| | |||||
* | Make serial plugin to use adapter references. | Luiz Augusto von Dentz | 2009-05-27 | 3 | -34/+42 |
| | |||||
* | Fix address variable type | Johan Hedberg | 2009-05-02 | 1 | -1/+1 |
| | |||||
* | Fix bt_cancel_discovery to not call callback. | Luiz Augusto von Dentz | 2009-04-30 | 1 | -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 Dentz | 2009-04-24 | 1 | -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 Barsode | 2009-04-21 | 1 | -1/+1 |
| | |||||
* | Add priority field to plugin descriptor definition and load plugins in ↵ | Alok Barsode | 2009-04-21 | 1 | -1/+2 |
| | | | | priority order. | ||||
* | Fix uninitialized variable compiler warning | Johan Hedberg | 2009-04-19 | 1 | -1/+3 |
| | |||||
* | Add support to channel pattern in Serial interface. | Luiz Augusto von Dentz | 2009-04-15 | 1 | -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 Dentz | 2009-04-14 | 1 | -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 Dentz | 2009-04-11 | 1 | -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 Dentz | 2009-04-01 | 1 | -46/+126 |
| | |||||
* | Add support of friendly name UUIDs for SerialProxyManager. | Luiz Augusto von Dentz | 2009-04-01 | 1 | -21/+22 |
| | |||||
* | Convert some not-so-important info logs to debug logs | Johan Hedberg | 2009-03-24 | 2 | -5/+5 |
| | |||||
* | Be sure to remove the name listener in serial_port_free | Johan Hedberg | 2009-03-23 | 1 | -0/+6 |
| | |||||
* | Adding version check for plugins. | Alok Barsode | 2009-03-14 | 1 | -1/+1 |
| | |||||
* | Use GCC visibility for exporting symbols | Marcel Holtmann | 2009-03-11 | 1 | -5/+5 |
| | |||||
* | Remove unused function | Johan Hedberg | 2009-02-25 | 2 | -34/+0 |
| | |||||
* | Fix bt_io_get parameter passing | Johan Hedberg | 2009-02-22 | 1 | -1/+1 |
| | |||||
* | Make use of g_io_channel_shutdown instead of deprecated g_io_channel_close. | Luiz Augusto von Dentz | 2009-02-19 | 2 | -3/+3 |
| | |||||
* | Make serial plugin to use BtIO API. | Luiz Augusto von Dentz | 2009-02-19 | 2 | -27/+56 |
| | |||||
* | Fix mostly every warning caused by -Wsign-compare | Marcel Holtmann | 2009-01-29 | 2 | -2/+4 |
| | |||||
* | Update copyright information | Marcel Holtmann | 2009-01-01 | 9 | -9/+9 |
| | |||||
* | Add missing include definitions | Marcel Holtmann | 2008-12-23 | 2 | -0/+2 |
| | |||||
* | Remove old serial-api.txt documentation file | Marcel Holtmann | 2008-12-22 | 2 | -178/+0 |
| | |||||
* | Revert previous change to g_timeout_add_seconds | Johan Hedberg | 2008-12-15 | 1 | -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 Holtmann | 2008-12-10 | 1 | -2/+3 |
| | |||||
* | Disallow Serial.Disconnect from unauthorized senders. | Luiz Augusto von Dentz | 2008-12-01 | 1 | -1/+6 |
| | |||||
* | Store RFCOMM tty fd and close it before release | Johan Hedberg | 2008-11-08 | 1 | -0/+8 |
| | |||||
* | Fix driver removal for serial port driver. | Luiz Augusto von Dentz | 2008-11-07 | 3 | -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 Dentz | 2008-11-07 | 1 | -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 Dentz | 2008-11-06 | 1 | -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 conversion | Johan Hedberg | 2008-11-06 | 1 | -1/+6 |
| | |||||
* | Add OBEX UUIDs to the serial service | Johan Hedberg | 2008-11-06 | 1 | -1/+4 |
| |