summaryrefslogtreecommitdiff
path: root/sap
diff options
context:
space:
mode:
authorSzymon Janc <szymon.janc@tieto.com>2012-06-06 15:19:19 +0200
committerJohan Hedberg <johan.hedberg@intel.com>2012-07-02 13:46:54 +0300
commitb939e8fab19d140afe684c587b95ddb4a6b588f5 (patch)
tree2f97b22ac95b8b324decf7b8dac7c66a2bd9d647 /sap
parent1121a936c2ed08001d9627ae98fb03445c7ddf38 (diff)
downloadbluez-b939e8fab19d140afe684c587b95ddb4a6b588f5.tar.gz
SAP: Rename server variable to sap_server
This is to avoid shadowing by local functions variables.
Diffstat (limited to 'sap')
-rw-r--r--sap/server.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/sap/server.c b/sap/server.c
index bc466d07c..a96c3fa8c 100644
--- a/sap/server.c
+++ b/sap/server.c
@@ -80,7 +80,7 @@ struct sap_server {
};
static DBusConnection *connection;
-static struct sap_server *server;
+static struct sap_server *sap_server;
static void start_guard_timer(struct sap_connection *conn, guint interval);
static void stop_guard_timer(struct sap_connection *conn);
@@ -588,7 +588,7 @@ static void sap_set_connected(struct sap_connection *conn)
{
gboolean connected = TRUE;
- emit_property_changed(connection, server->path,
+ emit_property_changed(connection, sap_server->path,
SAP_SERVER_INTERFACE,
"Connected", DBUS_TYPE_BOOLEAN, &connected);
@@ -1064,7 +1064,7 @@ static void sap_conn_remove(struct sap_connection *conn)
conn->io = NULL;
g_free(conn);
- server->conn = NULL;
+ sap_server->conn = NULL;
}
static gboolean sap_io_cb(GIOChannel *io, GIOCondition cond, gpointer data)
@@ -1122,7 +1122,7 @@ static void sap_io_destroy(void *data)
if (conn->state != SAP_STATE_CONNECT_IN_PROGRESS &&
conn->state != SAP_STATE_CONNECT_MODEM_BUSY)
- emit_property_changed(connection, server->path,
+ emit_property_changed(connection, sap_server->path,
SAP_SERVER_INTERFACE, "Connected",
DBUS_TYPE_BOOLEAN, &connected);
@@ -1181,7 +1181,7 @@ static void connect_auth_cb(DBusError *derr, void *data)
static void connect_confirm_cb(GIOChannel *io, gpointer data)
{
- struct sap_connection *conn = server->conn;
+ struct sap_connection *conn = sap_server->conn;
GError *gerr = NULL;
bdaddr_t src, dst;
char dstaddr[18];
@@ -1208,7 +1208,7 @@ static void connect_confirm_cb(GIOChannel *io, gpointer data)
g_io_channel_set_encoding(io, NULL, NULL);
g_io_channel_set_buffered(io, FALSE);
- server->conn = conn;
+ sap_server->conn = conn;
conn->io = g_io_channel_ref(io);
conn->state = SAP_STATE_DISCONNECTED;
@@ -1341,13 +1341,13 @@ int sap_server_register(const char *path, bdaddr_t *src)
return -1;
}
- server = g_try_new0(struct sap_server, 1);
- if (!server) {
+ sap_server = g_try_new0(struct sap_server, 1);
+ if (!sap_server) {
sap_exit();
return -ENOMEM;
}
- server->path = g_strdup(path);
+ sap_server->path = g_strdup(path);
record = create_sap_record(SAP_SERVER_CHANNEL);
if (!record) {
@@ -1361,9 +1361,9 @@ int sap_server_register(const char *path, bdaddr_t *src)
goto sdp_err;
}
- server->record_id = record->handle;
+ sap_server->record_id = record->handle;
- io = bt_io_listen(BT_IO_RFCOMM, NULL, connect_confirm_cb, server,
+ io = bt_io_listen(BT_IO_RFCOMM, NULL, connect_confirm_cb, sap_server,
NULL, &gerr,
BT_IO_OPT_SOURCE_BDADDR, src,
BT_IO_OPT_CHANNEL, SAP_SERVER_CHANNEL,
@@ -1378,12 +1378,12 @@ int sap_server_register(const char *path, bdaddr_t *src)
DBG("Listen socket 0x%02x", g_io_channel_unix_get_fd(io));
- server->listen_io = io;
- server->conn = NULL;
+ sap_server->listen_io = io;
+ sap_server->conn = NULL;
if (!g_dbus_register_interface(connection, path, SAP_SERVER_INTERFACE,
server_methods, server_signals, NULL,
- server, destroy_sap_interface)) {
+ sap_server, destroy_sap_interface)) {
error("D-Bus failed to register %s interface",
SAP_SERVER_INTERFACE);
goto server_err;
@@ -1392,9 +1392,9 @@ int sap_server_register(const char *path, bdaddr_t *src)
return 0;
server_err:
- remove_record_from_server(server->record_id);
+ remove_record_from_server(sap_server->record_id);
sdp_err:
- server_free(server);
+ server_free(sap_server);
sap_exit();
return -1;
@@ -1402,18 +1402,18 @@ sdp_err:
int sap_server_unregister(const char *path)
{
- if (!server)
+ if (!sap_server)
return -EINVAL;
- remove_record_from_server(server->record_id);
+ remove_record_from_server(sap_server->record_id);
- if (server->conn)
- sap_conn_remove(server->conn);
+ if (sap_server->conn)
+ sap_conn_remove(sap_server->conn);
- if (server->listen_io) {
- g_io_channel_shutdown(server->listen_io, TRUE, NULL);
- g_io_channel_unref(server->listen_io);
- server->listen_io = NULL;
+ if (sap_server->listen_io) {
+ g_io_channel_shutdown(sap_server->listen_io, TRUE, NULL);
+ g_io_channel_unref(sap_server->listen_io);
+ sap_server->listen_io = NULL;
}
g_dbus_unregister_interface(connection, path, SAP_SERVER_INTERFACE);