aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/signal.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-07-14 02:08:35 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-07-14 02:08:35 +0800
commit6d2b66e89a9513c206ec76274f148cf65b06996d (patch)
treec20a739f8ae3b3bc885c3d419993969bf7dd7ae3 /openbsc/include/openbsc/signal.h
parent4f448c97ebc8dae095e109965ec038601125a7c8 (diff)
abis_nm: Create a signal data structure for the NACK message
Provide the message type and the msgb of the NACK message.
Diffstat (limited to 'openbsc/include/openbsc/signal.h')
-rw-r--r--openbsc/include/openbsc/signal.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/signal.h b/openbsc/include/openbsc/signal.h
index 0738f807d..e614ee50d 100644
--- a/openbsc/include/openbsc/signal.h
+++ b/openbsc/include/openbsc/signal.h
@@ -1,5 +1,5 @@
/* Generic signalling/notification infrastructure */
-/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
+/* (C) 2009-2010 by Holger Hans Peter Freyther <zecke@selfish.org>
* (C) 2009 by Harald Welte <laforge@gnumonks.org>
* All Rights Reserved
*
@@ -139,6 +139,11 @@ struct ipacc_ack_signal_data {
u_int8_t msg_type;
};
+struct nm_nack_signal_data {
+ struct msgb *msg;
+ uint8_t mt;
+};
+
struct challoc_signal_data {
struct gsm_bts *bts;
struct gsm_lchan *lchan;