From: Andrei Emeltchenko Date: Fri, 11 Oct 2013 10:02:02 +0000 (+0300) Subject: android: Enable Socket interface X-Git-Tag: android-x86-4.4-r3~7429 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=7999518d3f428fd3fcd58e1e085eb1509677f8de;p=android-x86%2Fexternal-bluetooth-bluez.git android: Enable Socket interface Returns socket interface, use header hal.h to avoid externs. --- diff --git a/android/hal.h b/android/hal.h new file mode 100644 index 000000000..40fbf0332 --- /dev/null +++ b/android/hal.h @@ -0,0 +1,18 @@ +/* + * Copyright (C) 2013 Intel Corporation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +btsock_interface_t *bt_get_sock_interface(void); diff --git a/android/hal_bluetooth.c b/android/hal_bluetooth.c index 48638a559..517f0b452 100644 --- a/android/hal_bluetooth.c +++ b/android/hal_bluetooth.c @@ -21,10 +21,13 @@ #include #include +#include #define LOG_TAG "BlueZ" #include +#include "hal.h" + bt_callbacks_t *bt_hal_cbacks = NULL; static bool interface_ready(void) @@ -244,6 +247,9 @@ static const void *get_profile_interface(const char *profile_id) if (!interface_ready()) return NULL; + if (!strcmp(profile_id, BT_PROFILE_SOCKETS_ID)) + return bt_get_sock_interface(); + return NULL; }