| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- // SPDX-License-Identifier: GPL-2.0-or-later
- /*
- * BlueZ - Bluetooth protocol stack for Linux
- *
- * Copyright (C) 2010 Instituto Nokia de Tecnologia - INdT
- *
- */
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include <stdbool.h>
- #include "lib/bluetooth.h"
- #include "lib/sdp.h"
- #include "src/log.h"
- #include "src/adapter.h"
- #include "src/device.h"
- #include "src/profile.h"
- #include "src/service.h"
- #include "manager.h"
- #include "server.h"
- static int sap_server_probe(struct btd_profile *p, struct btd_adapter *adapter)
- {
- DBG("path %s", adapter_get_path(adapter));
- return sap_server_register(adapter);
- }
- static void sap_server_remove(struct btd_profile *p,
- struct btd_adapter *adapter)
- {
- const char *path = adapter_get_path(adapter);
- DBG("path %s", path);
- sap_server_unregister(path);
- }
- static struct btd_profile sap_profile = {
- .name = "sap-server",
- .adapter_probe = sap_server_probe,
- .adapter_remove = sap_server_remove,
- };
- int sap_manager_init(void)
- {
- btd_profile_register(&sap_profile);
- return 0;
- }
- void sap_manager_exit(void)
- {
- btd_profile_unregister(&sap_profile);
- }
|