Blob: hdp_manager.c
Blob id: d1e627a3382a01bdd5002bcc0da01da35e872da1
Size: 1.9 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | // SPDX-License-Identifier: GPL-2.0-or-later /* * * BlueZ - Bluetooth protocol stack for Linux * * Copyright (C) 2010 GSyC/LibreSoft, Universidad Rey Juan Carlos. * */ #ifdef HAVE_CONFIG_H #include <config.h> #endif #include <stdbool.h> #include "bluetooth/sdp.h" #include "bluetooth/sdp_lib.h" #include "bluetooth/uuid.h" #include "btio/btio.h" #include "src/adapter.h" #include "src/device.h" #include "src/profile.h" #include "src/service.h" #include "src/uuid-helper.h" #include "src/log.h" #include "hdp_types.h" #include "hdp_manager.h" #include "hdp.h" static int hdp_adapter_probe(struct btd_profile *p, struct btd_adapter *adapter) { return hdp_adapter_register(adapter); } static void hdp_adapter_remove(struct btd_profile *p, struct btd_adapter *adapter) { hdp_adapter_unregister(adapter); } static int hdp_driver_probe(struct btd_service *service) { struct btd_device *device = btd_service_get_device(service); return hdp_device_register(device); } static void hdp_driver_remove(struct btd_service *service) { struct btd_device *device = btd_service_get_device(service); hdp_device_unregister(device); } static struct btd_profile hdp_source_profile = { .name = "hdp-source", .remote_uuid = HDP_SOURCE_UUID, .device_probe = hdp_driver_probe, .device_remove = hdp_driver_remove, .adapter_probe = hdp_adapter_probe, .adapter_remove = hdp_adapter_remove, }; static struct btd_profile hdp_sink_profile = { .name = "hdp-sink", .remote_uuid = HDP_SINK_UUID, .device_probe = hdp_driver_probe, .device_remove = hdp_driver_remove, }; int hdp_manager_init(void) { if (hdp_manager_start() < 0) return -1; btd_profile_register(&hdp_source_profile); btd_profile_register(&hdp_sink_profile); return 0; } void hdp_manager_exit(void) { btd_profile_unregister(&hdp_sink_profile); btd_profile_unregister(&hdp_source_profile); hdp_manager_stop(); } |