summaryrefslogtreecommitdiffstats
path: root/gatchat
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2012-07-15 20:09:43 -0300
committerMarcel Holtmann <marcel@holtmann.org>2012-07-15 20:14:12 -0300
commitc49c3314d17608aa10d0649a0bccc5a8b32a9fc2 (patch)
tree492f7d5a9693a7f2c54735b863cfd0e8441d57ef /gatchat
parent17828ce9c91c094cd736e7ae28f889b307be6365 (diff)
downloadofono-c49c3314d17608aa10d0649a0bccc5a8b32a9fc2.tar.bz2
gatchat: Avoid shadowing global AT server variable
Diffstat (limited to 'gatchat')
-rw-r--r--gatchat/test-server.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/gatchat/test-server.c b/gatchat/test-server.c
index 6f1d06d9..4b96b325 100644
--- a/gatchat/test-server.c
+++ b/gatchat/test-server.c
@@ -64,7 +64,7 @@ struct sock_server{
};
static GMainLoop *mainloop;
-static GAtServer *server;
+static GAtServer *main_server;
static GAtPPP *ppp;
unsigned int server_watch;
@@ -78,8 +78,8 @@ static gboolean server_cleanup(void)
ppp = NULL;
}
- g_at_server_unref(server);
- server = NULL;
+ g_at_server_unref(main_server);
+ main_server = NULL;
unlink(DEFAULT_SOCK_PATH);
@@ -153,9 +153,9 @@ static void ppp_disconnect(GAtPPPDisconnectReason reason, gpointer user)
static void open_ppp(gpointer user)
{
- GAtIO *io = g_at_server_get_io(server);
+ GAtIO *io = g_at_server_get_io(main_server);
- g_at_server_suspend(server);
+ g_at_server_suspend(main_server);
g_at_ppp_listen(ppp, io);
}
@@ -863,8 +863,8 @@ static gboolean create_tty(const char *modem_path)
server_io = g_io_channel_unix_new(master);
- server = g_at_server_new(server_io);
- if (server == NULL) {
+ main_server = g_at_server_new(server_io);
+ if (main_server == NULL) {
g_io_channel_shutdown(server_io, FALSE, NULL);
g_io_channel_unref(server_io);
@@ -894,13 +894,13 @@ static gboolean on_socket_connected(GIOChannel *chan, GIOCondition cond,
client_io = g_io_channel_unix_new(fd);
- server = g_at_server_new(client_io);
+ main_server = g_at_server_new(client_io);
g_io_channel_unref(client_io);
- if (server == NULL)
+ if (main_server == NULL)
goto error;
- add_handler(server);
+ add_handler(main_server);
return TRUE;
@@ -1040,7 +1040,7 @@ static void test_server(int type)
if (create_tty("/phonesim1") == FALSE)
exit(1);
- add_handler(server);
+ add_handler(main_server);
break;
case 1:
if (create_tcp("/phonesim1", DEFAULT_TCP_PORT) == FALSE)