1 /* 2 * 3 * BlueZ - Bluetooth protocol stack for Linux 4 * 5 * Copyright (C) 2006-2007 Nokia Corporation 6 * Copyright (C) 2004-2009 Marcel Holtmann <marcel@holtmann.org> 7 * 8 * 9 * This program is free software; you can redistribute it and/or modify 10 * it under the terms of the GNU General Public License as published by 11 * the Free Software Foundation; either version 2 of the License, or 12 * (at your option) any later version. 13 * 14 * This program is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License 20 * along with this program; if not, write to the Free Software 21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 22 * 23 */ 24 25 struct enabled_interfaces { 26 gboolean hfp; 27 gboolean headset; 28 gboolean gateway; 29 gboolean sink; 30 gboolean source; 31 gboolean control; 32 }; 33 34 int audio_manager_init(DBusConnection *conn, GKeyFile *config, 35 gboolean *enable_sco); 36 void audio_manager_exit(void); 37 38 gboolean server_is_enabled(bdaddr_t *src, uint16_t svc); 39 40 struct audio_device *manager_find_device(const char *path, 41 const bdaddr_t *src, 42 const bdaddr_t *dst, 43 const char *interface, 44 gboolean connected); 45 46 struct audio_device *manager_get_device(const bdaddr_t *src, 47 const bdaddr_t *dst, 48 gboolean create); 49 50 gboolean manager_allow_headset_connection(struct audio_device *device); 51