aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/silent_call.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-06-21 10:34:03 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-06-21 16:40:09 +0800
commit758f4dfa17f57ff4f1be98b47f5282471d83f592 (patch)
tree27f26c4308a91c96db1b689b36bb5ab514a18bf8 /openbsc/include/openbsc/silent_call.h
parent1afbd76155ca72b215f41f4870e5cdf91afd8f3c (diff)
silent_call: Use the gsm_subscriber_connection instead of lchan->conn
Diffstat (limited to 'openbsc/include/openbsc/silent_call.h')
-rw-r--r--openbsc/include/openbsc/silent_call.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/openbsc/include/openbsc/silent_call.h b/openbsc/include/openbsc/silent_call.h
index fefc5182d..2492903c2 100644
--- a/openbsc/include/openbsc/silent_call.h
+++ b/openbsc/include/openbsc/silent_call.h
@@ -1,10 +1,12 @@
#ifndef _SILENT_CALL_H
#define _SILENT_CALL_H
+struct gsm_subscriber_connection;
+
extern int gsm_silent_call_start(struct gsm_subscriber *subscr,
void *data, int type);
extern int gsm_silent_call_stop(struct gsm_subscriber *subscr);
-extern int silent_call_rx(struct msgb *msg);
-extern int silent_call_reroute(struct msgb *msg);
+extern int silent_call_rx(struct gsm_subscriber_connection *conn, struct msgb *msg);
+extern int silent_call_reroute(struct gsm_subscriber_connection *conn, struct msgb *msg);
#endif /* _SILENT_CALL_H */