aboutsummaryrefslogtreecommitdiffstats
path: root/include/msc_connection.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-05-08 10:29:23 +0200
committerHarald Welte <laforge@gnumonks.org>2011-05-08 10:29:23 +0200
commitff397edf385cc055fe1665780c3a5395ee9d48be (patch)
treede96bb4800ebc23171d48d25e2b8a1a8c662f188 /include/msc_connection.h
parentedfadaeb3d73147a409f0f45afc48f7dc2207853 (diff)
Adopt to recent libosmocore namespace changes and libosmogsm
Diffstat (limited to 'include/msc_connection.h')
-rw-r--r--include/msc_connection.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/msc_connection.h b/include/msc_connection.h
index 7d3d354..94754d7 100644
--- a/include/msc_connection.h
+++ b/include/msc_connection.h
@@ -20,9 +20,9 @@
#ifndef MSC_CONNECTION_H
#define MSC_CONNECTION_H
-#include <osmocore/linuxlist.h>
-#include <osmocore/write_queue.h>
-#include <osmocore/timer.h>
+#include <osmocom/core/linuxlist.h>
+#include <osmocom/core/write_queue.h>
+#include <osmocom/core/timer.h>
#include <osmocom/sccp/sccp.h>
@@ -42,22 +42,22 @@ struct msc_connection {
/* connection management */
int msc_link_down;
- struct write_queue msc_connection;
- struct timer_list reconnect_timer;
+ struct osmo_wqueue msc_connection;
+ struct osmo_timer_list reconnect_timer;
int first_contact;
/* time to wait for first message from MSC */
- struct timer_list msc_timeout;
+ struct osmo_timer_list msc_timeout;
int msc_time;
/* timeouts for the msc connection */
int ping_time;
int pong_time;
- struct timer_list ping_timeout;
- struct timer_list pong_timeout;
+ struct osmo_timer_list ping_timeout;
+ struct osmo_timer_list pong_timeout;
/* mgcp messgaes */
- struct write_queue mgcp_agent;
+ struct osmo_wqueue mgcp_agent;
/* application pointer */
struct ss7_application *app;