mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-11 13:04:10 +08:00
84 lines
3.5 KiB
C
84 lines
3.5 KiB
C
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2004-2007 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
|
|
*
|
|
*/
|
|
|
|
#ifndef __H_BLUEZ_DBUS_HCI_H__
|
|
#define __H_BLUEZ_DBUS_HCI_H__
|
|
|
|
#include <dbus/dbus.h>
|
|
#include "dbus-adapter.h"
|
|
|
|
void hcid_dbus_set_experimental();
|
|
int hcid_dbus_use_experimental();
|
|
int hcid_dbus_register_device(uint16_t id);
|
|
int hcid_dbus_unregister_device(uint16_t id);
|
|
int hcid_dbus_start_device(uint16_t id);
|
|
int hcid_dbus_stop_device(uint16_t id);
|
|
void hcid_dbus_pending_pin_req_add(bdaddr_t *sba, bdaddr_t *dba);
|
|
int hcid_dbus_request_pin(int dev, bdaddr_t *sba, struct hci_conn_info *ci);
|
|
int hcid_dbus_confirm_pin(int dev, bdaddr_t *sba, struct hci_conn_info *ci, char *pin);
|
|
|
|
void hcid_dbus_inquiry_start(bdaddr_t *local);
|
|
void hcid_dbus_inquiry_complete(bdaddr_t *local);
|
|
void hcid_dbus_periodic_inquiry_start(bdaddr_t *local, uint8_t status);
|
|
void hcid_dbus_periodic_inquiry_exit(bdaddr_t *local, uint8_t status);
|
|
void hcid_dbus_inquiry_result(bdaddr_t *local, bdaddr_t *peer, uint32_t class, int8_t rssi, uint8_t *data);
|
|
void hcid_dbus_remote_class(bdaddr_t *local, bdaddr_t *peer, uint32_t class);
|
|
void hcid_dbus_remote_name(bdaddr_t *local, bdaddr_t *peer, uint8_t status, char *name);
|
|
void hcid_dbus_conn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, bdaddr_t *peer);
|
|
void hcid_dbus_disconn_complete(bdaddr_t *local, uint8_t status, uint16_t handle, uint8_t reason);
|
|
void hcid_dbus_bonding_process_complete(bdaddr_t *local, bdaddr_t *peer, uint8_t status);
|
|
void hcid_dbus_setname_complete(bdaddr_t *local);
|
|
void hcid_dbus_setscan_enable_complete(bdaddr_t *local);
|
|
void hcid_dbus_pin_code_reply(bdaddr_t *local, void *ptr);
|
|
|
|
int unregister_adapter_path(const char *path);
|
|
|
|
DBusMessage *dev_signal_factory(int devid, const char *prop_name, int first, ...);
|
|
|
|
DBusMessage *new_authentication_return(DBusMessage *msg, uint8_t status);
|
|
|
|
int get_default_dev_id(void);
|
|
|
|
void create_bond_req_exit(const char *name, struct adapter *adapter);
|
|
void discover_devices_req_exit(const char *name, struct adapter *adapter);
|
|
int cancel_discovery(struct adapter *adapter);
|
|
void periodic_discover_req_exit(const char *name, struct adapter *adapter);
|
|
int cancel_periodic_discovery(struct adapter *adapter);
|
|
|
|
int active_conn_find_by_bdaddr(const void *data, const void *user_data);
|
|
void bonding_request_free(struct bonding_request_info *dev);
|
|
int pin_req_cmp(const void *p1, const void *p2);
|
|
int found_device_cmp(const struct remote_dev_info *d1,
|
|
const struct remote_dev_info *d2);
|
|
int found_device_add(GSList **list, bdaddr_t *bdaddr, int8_t rssi,
|
|
name_status_t name_status);
|
|
int found_device_req_name(struct adapter *dbus_data);
|
|
|
|
int discov_timeout_handler(void *data);
|
|
|
|
void set_dbus_connection(DBusConnection *conn);
|
|
|
|
DBusConnection *get_dbus_connection(void);
|
|
|
|
#endif /* __H_BLUEZ_DBUS_HCI_H__ */
|