aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-02-11 16:49:41 +0100
committerHarald Welte <laforge@gnumonks.org>2011-02-11 16:49:41 +0100
commitf27d043032e6263f5b8f3b0c1db9594d3bba4156 (patch)
treed612c28d223b1c9ba32abf9176fac3dc80487f36 /openbsc/include
parentf338a03b0cc85ca20bfe8e1ebe3b98e86bcef3c1 (diff)
E1 Input: Add new S_INP_LINE_INIT signal
This allows other code to listen ot a signal about a new line that was just configured.
Diffstat (limited to 'openbsc/include')
-rw-r--r--openbsc/include/openbsc/signal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/openbsc/include/openbsc/signal.h b/openbsc/include/openbsc/signal.h
index c583e94cb..866fa293d 100644
--- a/openbsc/include/openbsc/signal.h
+++ b/openbsc/include/openbsc/signal.h
@@ -144,6 +144,7 @@ enum signal_input {
S_INP_NONE,
S_INP_TEI_UP,
S_INP_TEI_DN,
+ S_INP_LINE_INIT,
};
struct gsm_subscriber;
@@ -244,6 +245,7 @@ struct ho_signal_data {
struct input_signal_data {
int link_type;
struct gsm_bts_trx *trx;
+ struct e1inp_line *line;
};
#endif