summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHarald Welte2010-03-04 10:32:09 +0100
committerHarald Welte2010-03-04 10:32:09 +0100
commiteb8bf3915cb4733e4e4357252893686f0d9d9d72 (patch)
tree86b18107e764569495ddeb4531dec0b189fe8025 /include
parentfix rsl_enc_chan_nr() for SDCCH4 (diff)
downloadlibosmocore-eb8bf3915cb4733e4e4357252893686f0d9d9d72.tar.gz
libosmocore-eb8bf3915cb4733e4e4357252893686f0d9d9d72.tar.xz
libosmocore-eb8bf3915cb4733e4e4357252893686f0d9d9d72.zip
add 'transparent' argument to rsl_rll_push_l3() and rsl_rll_push_l3()
this is required to make those functions useful for OpenBSC, nut just OsmocomBB
Diffstat (limited to 'include')
-rw-r--r--include/osmocore/rsl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/osmocore/rsl.h b/include/osmocore/rsl.h
index 250c6ea..0da0520 100644
--- a/include/osmocore/rsl.h
+++ b/include/osmocore/rsl.h
@@ -22,10 +22,10 @@ const char *rsl_err_name(uint8_t err);
int rsl_ccch_conf_to_bs_cc_chans(int ccch_conf);
/* Push a RSL RLL header with L3_INFO IE */
-int rsl_rll_push_l3(struct msgb *msg, uint8_t msg_type,
- uint8_t chan_nr, uint8_t link_id);
+void rsl_rll_push_l3(struct msgb *msg, uint8_t msg_type, uint8_t chan_nr,
+ uint8_t link_id, int transparent);
/* Allocate msgb and fill with simple RSL RLL header */
struct msgb *rsl_rll_simple(uint8_t msg_type, uint8_t chan_nr,
- uint8_t link_id);
+ uint8_t link_id, int transparent);
#endif /* _OSMOCORE_RSL_H */