aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2011-03-05Fix Makefile.am for builddir != srcdiropenbsc/0.9.13Harald Welte1-1/+1
2011-03-05Makefile: Add libmsc subdirectory to fix 'distcheck'Harald Welte1-1/+1
2011-03-05OM2000: Add support for configuring the TF (Timing Function)Harald Welte4-1/+43
2011-03-05OM2000: Add support for sending TX, RX and TS configuration requestsHarald Welte3-13/+244
They can be triggered from the VTY
2011-03-04fix path of bscconfig.h include fileHarald Welte7-7/+7
2011-03-04Fix build of bsc-nat testHarald Welte1-8/+10
2011-03-04Some more SR1.0.1 related fixesHarald Welte1-0/+12
somehow all the 0x81 in OML became 0x80, and the 0x80 of RSL became 0x80.
2011-03-04fix erroneous modification of DTX parameter introduced in previous HSL commitHarald Welte1-1/+1
2011-03-04Make sure not to feed BSSGP messages into RSLHarald Welte1-1/+2
2011-03-04Implement the HSL SR1.0.1 protocolHarald Welte4-5/+12
It seems HSL has fixed most of their obvious issues in the SR1.0.1 release. However, this creates quite an incompatibility of the protocol, and we have to adapt accordingly
2011-03-04[HSL] initial support for the HSL 2.75G FemtocellHarald Welte12-11/+706
The HSL Femtocell seems to be a poor man implementation of the ip.access Abis/IP protocol, but cutting corners wherever possible. We try to workaround those corners wherever possible...
2011-03-04prefix sub-directories containing libraries with 'lib'Harald Welte91-45/+69
... and make sure tests work again after restructuring
2011-03-04really delete a3a8 codeHarald Welte1-269/+0
2011-03-03bsc_mgcp: use top_builddir instead of top_srcdirHarald Welte1-1/+1
2011-03-03Move 'Gb' protocol stack into its own src/gb subdirectoryHarald Welte10-10/+15
2011-03-03Rename bsc_nat -> osmo-bsc_nat and bsc_mgcp -> osmo-bsc_mgcpHarald Welte12-11/+16
This now enforces a unique structure: All of our main daemon programs start with an "osmo-" prefix.
2011-03-03re-structure the OpenBSC directory layoutHarald Welte91-84/+428
The new structure divides the code into a number of libraries for the BSC core functionality, MSC core functionality, Abis transport, TRAU and other bits. This doesn't introduce any functional code change but simply moves around files and alters Makefile.am accordingly. Next step would be to disentangle a lot of the inter-library dependencies and make the individual bits of code more independent.
2011-03-03remove a3a8 file that is not usedHarald Welte1-269/+0
2011-02-28misc: Fix the make distcheck of the sources.openbsc/0.9.12Holger Hans Peter Freyther2-1/+3
2011-02-28mgcp: Fix make distcheck due a copy 'n pasted Makefile.amHolger Hans Peter Freyther1-2/+0
2011-02-28mgcp: Only allow transcoding on the virtual trunkHolger Hans Peter Freyther2-2/+3
2011-02-28mgcp: Fix the static allocation of E1 trunks for the BTS/NET sideHolger Hans Peter Freyther2-9/+18
2011-02-28mgcp: Allocate the endpoints for the E1 trunks as well.Holger Hans Peter Freyther4-38/+61
2011-02-28mgcp: Look up the E1 trunks through the trunk configurationHolger Hans Peter Freyther1-4/+15
2011-02-28mgcp: Implement find_trunk to find the E1 trunks as well.Holger Hans Peter Freyther1-4/+26
2011-02-28mgcp: Make show mgcp print the new trunks we have.Holger Hans Peter Freyther1-0/+11
2011-02-28mgcp: Introduce a trunk config for multiple trunks.Holger Hans Peter Freyther6-4/+140
A trunk will always have 32 endpoints to be used and we allow a sparse allocation of endpoints.
2011-02-28mgcp: Update the commands to work on more than the virtual trunkHolger Hans Peter Freyther1-25/+58
2011-02-28mgcp: Prepare the show mgcp command to work on multiple trunksHolger Hans Peter Freyther1-7/+15
2011-02-28mgcp: Introduce a mgcp_trunk_config enum for endpoint configsHolger Hans Peter Freyther9-94/+130
We want to support real trunks in the MGCP code and we need to have some better book keeping for those. Move the code around.
2011-02-28nat: For debugging make it possible to set the last used endpointHolger Hans Peter Freyther1-0/+27
This will influence the allocator from where to search for the next free endpoint. This can be used to force it to allocate a specific endpoint next.
2011-02-27nat: Fix some corruption in the test caseHolger Hans Peter Freyther3-0/+8
2011-02-27nat: Change number of multiplexes to the max-endpointsHolger Hans Peter Freyther5-16/+42
2011-02-26nat: Allocate endpoints from multiple multiplexes.Holger Hans Peter Freyther4-14/+82
This code allocates endpoints from multiple multiplexes but will always leave 0x0 and 0x1f unassigned in the multiplex.
2011-02-26nat: Start making the number of multiplexes configurableHolger Hans Peter Freyther3-2/+16
Introduce a VTY setting that right now needs to be set to one. To make updating this setting possible we will now store the number of endpoints in the bsc connection as well.
2011-02-26nat: Verify that we are not assigning 0x1f as endpoint.Holger Hans Peter Freyther1-5/+5
On a classic BSC we have 32 channels but one is reserved for signalling. Make sure that we are not assigning 0x1f as we assume that this is the signalling channel. This means that from 32 possible voice channels we are only going to use 30 as we are already not using the 0x0.
2011-02-26nat: Allocate the endpoint status dynamicallyHolger Hans Peter Freyther5-12/+39
Allocate the status for an endpoint dynamically. We will support BSCs with different amount of multiplexes and need to have this flexibility in the future. Add the proper null checks to the current users of this code.
2011-02-25nat: Update the tests to make them going againHolger Hans Peter Freyther2-4/+7
We now need to have access to a mgcp_cfg and the change to the setup number patching needs new data. We now set the number to international type.
2011-02-25configure: Require a new libosmovty due to the syslog/logging changesHolger Hans Peter Freyther1-1/+1
2011-02-24Use shorter vty_app_info->name for all appsHarald Welte4-4/+4
... as this is now used as SYSLOG ident
2011-02-24sms: introduce new command to trigger the sending process for specific ↵Nico Golde1-0/+19
subscribers only
2011-02-24rf: Delay execution of commandsHolger Hans Peter Freyther2-18/+39
Delay executing RF commands up to a second. If many commands arrive within a second then just execute the last command.
2011-02-24rf: Verify that the requested mode is entered and drop OML in errorHolger Hans Peter Freyther2-0/+34
Verify that the BTS is following our orders, if we think there was an error we will drop the OML connection.
2011-02-24rf: Remember the last command requested on the RF CMD interfaceHolger Hans Peter Freyther3-0/+15
2011-02-24oml: Parse probable cause and additional text in failure reportsDieter Spaar1-0/+14
2011-02-24misc: Compile fixes due 4d54d0b883dcf85cd92290dd4cea51754c70b621Holger Hans Peter Freyther2-3/+4
2011-02-20debian: Correct the path for the binaries.Holger Hans Peter Freyther6-9/+9
2011-02-19BSC: Fix empty neighbor list in case of manual SI/SI5 modeHarald Welte1-3/+3
2011-02-19Fix various compiler warnings all over the codeHarald Welte11-11/+18
2011-02-19Install programs into $(prefix)/bin, not /sbinHarald Welte3-4/+4
At least in many configurations, there is no need to run any of our programs as root. Thus, we shouldn't install them in sbin.