aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/transaction.h
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2009-07-23 21:58:40 +0200
committerHarald Welte <laforge@gnumonks.org>2009-07-23 21:58:40 +0200
commitb8b4073e1842cd1de4b432e201865a96baa4c067 (patch)
tree010979dab509aa01a945d2c4115601c4f6da5bf0 /openbsc/include/openbsc/transaction.h
parent78283ef151aa4cac6eaf9728b3df65a117108186 (diff)
look-up by (subscriber, protocol, transaction_id) tuple
... rather than the previous incomplete (lchan, transaction_id) tuple
Diffstat (limited to 'openbsc/include/openbsc/transaction.h')
-rw-r--r--openbsc/include/openbsc/transaction.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/openbsc/include/openbsc/transaction.h b/openbsc/include/openbsc/transaction.h
index 1450dbca5..39ed50035 100644
--- a/openbsc/include/openbsc/transaction.h
+++ b/openbsc/include/openbsc/transaction.h
@@ -4,7 +4,8 @@
#include <openbsc/gsm_data.h>
#include <openbsc/gsm_subscriber.h>
-struct gsm_trans *trans_find_by_id(struct gsm_lchan *lchan, u_int8_t trans_id);
+struct gsm_trans *trans_find_by_id(struct gsm_subscriber *subscr,
+ u_int8_t proto, u_int8_t trans_id);
struct gsm_trans *trans_find_by_callref(struct gsm_network *net,
u_int32_t callref);