aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/sms_queue.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-12-24 21:39:55 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-12-26 09:40:03 +0100
commit17164061a631de73378b677cd4a267351af22dbe (patch)
treeaa5076cb9317998906d4fb69ca00d9b97e61538e /openbsc/include/openbsc/sms_queue.h
parent11b28f9c26cdafe448eae1dbf6b06a7d1050083a (diff)
sms: Begin sending SMS messages, handle failures
The sms queue will attempt to send one SMS per subscriber to fill all the available slots. It will handle the case where paging has not started, timed out or if there was any kind of other failure. It is also retransmitting SMS in case of failures.
Diffstat (limited to 'openbsc/include/openbsc/sms_queue.h')
-rw-r--r--openbsc/include/openbsc/sms_queue.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/sms_queue.h b/openbsc/include/openbsc/sms_queue.h
index d377aca40..d04856629 100644
--- a/openbsc/include/openbsc/sms_queue.h
+++ b/openbsc/include/openbsc/sms_queue.h
@@ -2,7 +2,9 @@
#define SMS_QUEUE_H
struct gsm_network;
+struct gsm_sms_queue;
int sms_queue_start(struct gsm_network *, int in_flight);
+int sms_queue_trigger(struct gsm_sms_queue *);
#endif