aboutsummaryrefslogtreecommitdiffstats
path: root/include/openbsc/trau_mux.h
AgeCommit message (Collapse)AuthorFilesLines
2017-08-30split off osmo-sgsn: remove files, apply build1.1.0Neels Hofmeyr1-70/+0
Change-Id: I5d27ff93e56cd13e0e70edd15e2080201e35e91f
2017-08-27move openbsc/* to repos rootNeels Hofmeyr1-0/+70
This is the first step in creating this repository from the legacy openbsc.git. Like all other Osmocom repositories, keep the autoconf and automake files in the repository root. openbsc.git has been the sole exception, which ends now. Change-Id: I9c6f2a448d9cb1cc088cf1cf6918b69d7e69b4e7
2009-06-10move openbsc into its own subdirectoryHarald Welte1-49/+0
2009-05-23With this patch, the TRAU muxing code supports not just bridging only. Harald Welte1-1/+7
A new function trau_recv_lchan() is used to link a channel to a call reference of a transaction. (Transactions are used in later patches.) TRAU frames will then be forwarded to the application with the given call reference (in later patches). Also the application can send TRAU frames by using trau_send_lchan(). A new list is introduced in trau_mux.c. (upqueue_entry) All subslots that must be sent to application are listed here. Received TRAU frames are written in the upqueue of application interface, if a call reference is found in the upqueue-list. If an entry is found the ss_entry list, the TRAU frames are bridged as before. The frames have a message type (msg_type), a call reference (callref) and a trau frame (data). The length of trau frame is defined by the content of the c-bits inside the frame. There is no support for ip.access yet, as they don't use the traditional TRAU frame format. Harald must add this in order to use application interface with ip-access. The bridging with ip-access works as before. (Andreas Eversberg)
2009-02-19trau mux updatesHarald Welte1-0/+2
* add function to map two lchans to each other * make sure to evic old trau mux mappings before creating a new one
2009-02-09* add trau_mux implementation to relay from one incoming TRAUHarald Welte1-0/+41
channel to another one (simple voice call switching) * add a way more generic E1 input layer, abstracting out the misdn low-level interface. This also adds infrastructure for multiple TRX in one BTS, as well as multiple BTS on one E1 link * add a E1 subchannel multiplexer for sending multiple 16kbit sub-channels one one 64kBps E1 channel * add TRAU IDLE frame generation * terminate bsc_hack in case there is a E1 / mISDN init error * introduce 'e1_config.c' file with static configuration of our E1 setup (which TRX/BTS is configured for which TEI/SAPI/E1). This should later become a config file rather than a compiled C file. WARNING: all this compiles but is not tested yet. Expect fix-up committs over the next hours or so