Make serial plugin to register adapter drivers.

This commit is contained in:
Luiz Augusto von Dentz 2008-08-12 18:59:10 -03:00
parent 00e08e05f3
commit cfb4d2ae65
5 changed files with 1206 additions and 1047 deletions

View File

@ -6,7 +6,7 @@ plugin_LTLIBRARIES = serial.la
serial_la_SOURCES = main.c \
manager.h manager.c port.h port.c \
storage.h storage.c
storage.h storage.c proxy.h proxy.c
LDADD = $(top_builddir)/common/libhelper.a \
@GDBUS_LIBS@ @GLIB_LIBS@ @DBUS_LIBS@ @BLUEZ_LIBS@

File diff suppressed because it is too large Load Diff

View File

@ -21,14 +21,5 @@
*
*/
#define SERIAL_MANAGER_PATH "/org/bluez/serial"
#define SERIAL_MANAGER_INTERFACE "org.bluez.serial.Manager"
int serial_manager_init(DBusConnection *conn);
void serial_manager_exit(void);
int rfcomm_release(int16_t id);
DBusMessage *service_connect(DBusConnection *conn, DBusMessage *msg,
const char *adapter,
const char *address,
const char *pattern);

1151
serial/proxy.c Normal file

File diff suppressed because it is too large Load Diff

25
serial/proxy.h Normal file
View File

@ -0,0 +1,25 @@
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2004-2008 Marcel Holtmann <marcel@holtmann.org>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
int proxy_register(DBusConnection *conn, const char *path, bdaddr_t *src);
void proxy_unregister(const char *path);