@@ -41,7 +41,7 @@ static int l2cap_sock = -1, unix_sock = -1;
* l2cap and unix sockets over which discovery and registration clients
* access us respectively
*/
-static int init_server(uint16_t mtu, int master, int compat)
+static int init_server(uint16_t mtu, int central, int compat)
{
struct l2cap_options opts;
struct sockaddr_l2 l2addr;
@@ -71,7 +71,7 @@ static int init_server(uint16_t mtu, int master, int compat)
return -1;
}
- if (master) {
+ if (central) {
int opt = L2CAP_LM_CENTRAL;
if (setsockopt(l2cap_sock, SOL_L2CAP, L2CAP_LM, &opt, sizeof(opt)) < 0) {
error("setsockopt: %s", strerror(errno));
@@ -218,12 +218,12 @@ static gboolean io_accept_event(GIOChannel *chan, GIOCondition cond, gpointer da
int start_sdp_server(uint16_t mtu, uint32_t flags)
{
int compat = flags & SDP_SERVER_COMPAT;
- int master = flags & SDP_SERVER_MASTER;
+ int central = flags & SDP_SERVER_CENTRAL;
GIOChannel *io;
info("Starting SDP server");
- if (init_server(mtu, master, compat) < 0) {
+ if (init_server(mtu, central, compat) < 0) {
error("Server initialization failed");
return -1;
}
@@ -59,7 +59,7 @@ uint32_t sdp_next_handle(void);
uint32_t sdp_get_time(void);
#define SDP_SERVER_COMPAT (1 << 0)
-#define SDP_SERVER_MASTER (1 << 1)
+#define SDP_SERVER_CENTRAL (1 << 1)
int start_sdp_server(uint16_t mtu, uint32_t flags);
void stop_sdp_server(void);
From: Archie Pusaka <apusaka@chromium.org> "central" is preferred, as reflected in the BT core spec 5.3. --- src/sdpd-server.c | 8 ++++---- src/sdpd.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-)