mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-17 01:04:40 +08:00
Make serial plugin to register adapter drivers.
This commit is contained in:
parent
00e08e05f3
commit
cfb4d2ae65
@ -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@
|
||||
|
1066
serial/manager.c
1066
serial/manager.c
File diff suppressed because it is too large
Load Diff
@ -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
1151
serial/proxy.c
Normal file
File diff suppressed because it is too large
Load Diff
25
serial/proxy.h
Normal file
25
serial/proxy.h
Normal 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);
|
Loading…
Reference in New Issue
Block a user