aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2018-05-03Bump version: 0.4.0.21-60fd-dirty → 0.5.00.5.0Pau Espin Pedrol6-9/+45
libosmotrau library version in debian package was wrong, fix it while releasing. Change-Id: I399618c7353a4150e3d571758b522dd2e9d9724f
2018-05-02git-version-gen: Check first for new tag formatPau Espin Pedrol1-2/+2
Tags starting with "v*" are old ones. We first want to check for the new ones, otherwise the wrong tag is selected as the last one. Change-Id: Ic39bed2fcf7e3ccb6a83e2999d29d129e07c1a84
2018-04-17use osmo_init_logging2Pau Espin Pedrol4-7/+9
Change-Id: Iab9d111aba8f9b423e6a541e928f68b38d561067
2018-04-10configure.ac: Fix condition check for RTP_SIGNAL_PTR_CAST definePau Espin Pedrol1-1/+1
While building libosmo-netif on a system with an old ortp (0.22), it was seen that warning related to RTP_SIGNAL_PTR_CAST not being correctly selected were being printed. The compilation didn't fail there as expected because the issue was being handled as a warning instead of an error, so the void* ptr case was always being selected. Change-Id: Ib5e7569e68fdb921c63e0c12e20e73aafbebda46
2018-04-06e1_input.h: Remove dead declaration of unexistent API ipaccess_setupPau Espin Pedrol1-3/+0
The function was removed long time ago in af8ed983ffa1f750e3972e0fb850c16249943543. Change-Id: I34debe01d1d8b6f4420354666d2a25807dacc25c
2018-03-22preserve 'when' flags of new osmo_fd in ipaccess_rcvmsg()Stefan Sperling1-1/+5
ipaccess_rcvmsg() disposes of a temporary osmo_fd structure after the RSL link comes up. It copies data from its temporary osmo_fd to the new one returned by sign_link_up(). However, in doing so, it clobbered the 'when' flags, which could differ between the two osmo_fd structures. For instance, BSC_FD_WRITE could be set on the new osmo_fd but not on the old one, in case sign_link_up() has already enqueued outbound messages using the new osmo_fd. Because of this behaviour, a patch committed to osmo-bsc to address issue #2719 did not work as intended and had to be reverted. After this change, that osmo-bsc patch should work as intended and issue #2719 can hopefully be resolved. Change-Id: I52f7c903212b38e9c87e4d45e52b231b6f1ae9f5 Related: OS#2719
2018-03-05jenkins.sh: use --enable-werror configure flag, not CFLAGSNeels Hofmeyr1-1/+1
Change-Id: I487ab6f2e391aa57404725de2c8ab5447ca9f725
2018-03-05configure: add --enable-werrorNeels Hofmeyr1-0/+20
Provide a sane means of adding the -Werror compiler flag. Currently, some of our jenkins.sh add -Werror by passing 'CFLAGS="-Werror"', but that actually *overwrites* all the other CFLAGS we might want to have set. Maintain these exceptions from -Werror: a) deprecation (allow upstream to mark deprecation without breaking builds); b) "#warning" pragmas (allow to remind ourselves of errors without breaking builds) As a last configure step before generating the output files, print the complete CFLAGS and CPPFLAGS by means of AC_MSG_RESULT. Change-Id: I20d5f18cf05c9e277d914ada259a95187b73fe39
2018-02-20contrib: jenkins.sh: Disable doxygen in libosmocore buildPau Espin Pedrol1-1/+1
Change-Id: I52fc3931ef072075561858bb7173f58a8503e499
2018-02-13IPA: log remote addressMax1-18/+20
Wrap IPA logging to always print peer's address to simplify troubleshooting. Change-Id: I19ebaea45812aad6b3d3480cac0f1f833daf428d
2018-02-09debian/control: Fix Vcs-BrowserHarald Welte1-1/+1
Change-Id: Ibcc861fe2125ee81097d0209b95dcbdc98c819a8
2018-01-08cosmetic: update ipaccess_bts_handle_ccm()Max1-2/+3
* mark internal function parameter as const * log unit IDs Change-Id: Ifcf8baf4bf5670efaa8689ca7386597fe2797bda
2017-12-03Add a new osmo_rtp_set_source_desc() function to set the RTCP SDES itemsHarald Welte3-0/+11
This allows the users of libosmotrau to set the content of the SDES items to something more useful than their compile-time defaults. Change-Id: Ice794f9e0c6caeea1c67520c12efbfa375d1fb82 Related: OS#2701
2017-11-21unixsocket: fix a potential string overflowAlexander Couzens1-1/+1
Change-Id: I8e3ec741247d728232f8c07c94eb63f068597d80 Found-by: coverity
2017-11-17add --enable-sanitize config optionNeels Hofmeyr1-0/+12
Change-Id: I59fea4a7199ca6aa71710d3aca0b25425df7d346
2017-11-13Add SPDX-License-Identifier to all source filesHarald Welte15-4/+31
Change-Id: I9f2bc8c5d8a2c0bb0dd6caa4de5e2cb11be210e7
2017-11-13debian/copyright: fix upstream-nameHarald Welte1-1/+1
Change-Id: Ia7b07524f9c3e6013992ee4ba5151d951b7d9eda
2017-11-01vty: skip installing cmds now always installed by defaultNeels Hofmeyr2-2/+0
vty_install_default() and install_default() will soon be deprecated. Depends: I5021c64a787b63314e0f2f1cba0b8fc7bff4f09b Change-Id: I7771131a27d0b7ad0397715ceb3be035062bc010
2017-10-27jenkins: use osmo-clean-workspace.sh before and after buildNeels Hofmeyr1-1/+4
See osmo-ci change I2409b2928b4d7ebbd6c005097d4ad7337307dd93 for rationale. Depends: I2409b2928b4d7ebbd6c005097d4ad7337307dd93 Change-Id: I2f4c0a6b9a066160707eb7768ea9cc8b77806b9b
2017-10-11debian/rules: show testsuite.log when tests are failingAlexander Couzens1-0/+3
Change-Id: Ic3322e3931612f2153797331b02f2789490e5e2b
2017-09-14cosmetic: ipa.c: use msgb_dequeue(), drop local varNeels Hofmeyr1-7/+3
Make ipa_server_conn_write() a lot simpler and shorter by using msgb_dequeue() and avoiding local pointer that was used only once. Change-Id: Id968e60d081a6d69de482a908ca3fe5e1044aaa3
2017-08-26Use value string check from osmo-ciMax1-2/+2
Change-Id: I60d480ce6fb761ac8e15318dbe2c591359a51c3c
2017-08-25Bump version: 0.3.2 → 0.4.00.4.0Max3-8/+18
Change-Id: Ibefe53a7f5b06fb8a9294574af41dacac68bdbe9
2017-08-08Use release helper from libosmocoreMax2-0/+6
Change-Id: Ifc88e5c942a8b430b2436d429c86560d82984a95 Related: OS#1861
2017-07-13contrib: Enable -Werror by defaultPau Espin Pedrol1-1/+1
Change-Id: I065b18dd6c4f7616f981aa4273e68e23825a7294
2017-07-13configure.ac: Fix RTP_SIGNAL_PTR_CAST config in FreeBSD buildPau Espin Pedrol1-2/+3
Move function definition to the first argument of AC_LANG_PROGRAM (prologue) instead of the second (body). Content of the body is writen into the main() function of the file being compiled, while prologue is writen before it. Compiler from FreeBSD build host doesn't like definitions inside the main function, it fails with the following error: conftest.c:28:73: error: function definition is not allowed here As the compilation test fails, unsigned int is used instead of void*, which doesn't match the current headers in the current build, and then a warning (or error with -Werror) is printed. Change-Id: I83fc3997e5067b499bf43cea4ff953604d6cbeae
2017-07-12check for missing result of rate_ctr_group_alloc()Harald Welte1-0/+5
In case the counter group allocation fails, we must handle this gracefully and fail the allocation of the parent object, too. Change-Id: Iff8506832d3472ab193b19b43cfbe7a9511075d1 Related: OS#2361
2017-07-10jenkins.sh: Proper error message if local environment isn't set upHarald Welte1-0/+6
Change-Id: Ibb34f07164adb175a44f460d02f54586b56a5b95
2017-07-05configure.ac: Fix C(PP)FLAGS for BSD buildPau Espin Pedrol1-4/+4
Issue first found in libosmocore. It seems the BSD build doesn't use bash which means using += to append to a variable doesn't work correctly. Change-Id: Id509351104bc7466114d4b9be450814254110f44
2017-06-29osmo_ortp.c: Duration of a RTP frame affects timestamp of the next onePau Espin Pedrol1-1/+1
Duration of an RTP frames dictates the timestamp used for the next frame, not for the one being sent now. It was done like this before to account for possible losses. Implementation wise, the duration was understood as "duration between last frame was sent and now when current one is sent". It makes more sense to use it as the duration in number of sampling ticks as described on the function documentation, specially now that we can account for extra time by means of osmo_rtp_skipped_frame. Change-Id: Ib8f5fa5509059fe908c09a4381844c613d478548
2017-06-29osmo_ortp: Add osmo_rtp_drop_frame APIPau Espin Pedrol2-0/+23
This API will be used by osmo-bts to maintain the sampling clock of the RTP socket whenever a frame should be sent but it is not available, for instance due to low quality of signal. Change-Id: Id6099372b6231c0a4b6ea0716f46f5daee7049e1
2017-06-22Revert "configure.ac: Use -Werror in C(PP)FLAGS"Neels Hofmeyr1-2/+2
As discussed in chat, -Werror should not be enabled by default. Instead it should be added in our jenkins build scripts. This reverts commit 7d1f53143e8eaeb25bae8979fb80dac57ddbf827. Change-Id: Ied6e21b72b24fcb623fd945ed9560b742a8eedf5
2017-06-22configure.ac: Use -Werror in C(PP)FLAGSPau Espin Pedrol1-2/+2
Change-Id: Ic674bf28d781b9806dc023777e1fea4ee1a0257a
2017-06-22configure.ac: Use -Wall in C(PP)FLAGSPau Espin Pedrol1-0/+3
Change-Id: I5033387e4a4206f7d34d1db3c6ede9255d199941
2017-06-22osmo_ortp.c: Fix warning: check ortp API in rtp_session_signal_connectPau Espin Pedrol2-4/+21
Since ortp commit 5ab29c50adc7948b11449e3aeee66010379ff7dc preceeding ortp 0.24, the API is fixed and requests a pointer instead of an unsigned long. As we now require at least ortp 0.22 since libosmo-abis 15d9b7929d449e4138bcb003c614035bceadc3d1, we need to support both old and new version of the API to continue having support for 0.22 but still supporting new versions of the library. Change-Id: I2dbd0498d75160358eca4336850e1a0ad2efdbeb
2017-06-22osmo_ortp.c: Fix warning: implicit use of functionPau Espin Pedrol1-1/+5
Explicitly state that we are using an internal API from ortp, and define the function we are using to avoid printing a warning. Change-Id: I9cadcb31ce7ade3632d83753be97fdc9ea518b5b
2017-06-07src: use osmo_timer_setup()Pablo Neira Ayuso4-8/+4
Use new function available in libosmocore to set up timers. Compile tested only. Change-Id: I4ca4950e49a09c63b608b13ac7561ebbd351889a
2017-05-26Revert "ipacces.c: Remove ipa_bts_id_resp() and use libosmocore"Harald Welte1-4/+85
This reverts commit d517db06ced45bbe0a70799487964e52edd8a375, which for some reason broke the IPA client functionality. This needs to be investigated and properly fixed. But until that happens: revert. Change-Id: Ic168f437c5bf1fcdb7441b0541c80a4805463004
2017-05-25Add value_string for input signal names (e1inp_signal_names)Harald Welte2-0/+13
Change-Id: I1662d4a969d2d12677646f3120b25be9a20c6d22
2017-04-15ipacces.c: Remove ipa_bts_id_resp() and use libosmocoreHarald Welte1-85/+4
In Chanage-Id Icbcd8827a75fd5f3393351c1ca372de85275ad35 we introduced a very similar function to libosocore. Let's use that rather than our own version here. Change-Id: I858920db1fb5f5d66e71b676d28c84d330d7904a
2017-04-04Fix HAVE_ORTP_LOG_DOMAIN detection on FreeBSDHarald Welte1-0/+3
We need to use the include path[s] resolved by pkg-config for ortp before trying to compile our test program. Without this patch, compilation will fail e.g. on FreeBSD 11. Change-Id: I0c95e37cc449297389bf31dd9d5dcaa922d75d0c
2017-03-29Fix RTP jitter buffer that never stop to increase.Jean-Francois Dionne1-1/+1
Duration passed to osmo_rtp_send_frame_ext function is based on the last frame and the current one. Duration must then be added to the timestamp before being transmitted. Change-Id: I0593d6530c097cca34125a0ae2dd1b019b4dd80d
2017-03-27configure: Fix compilation with new libortpPau Espin Pedrol2-3/+21
Commit 0c8d9ddaea8c1afdc0e9b8c37a31c9d158e57efd in ortp broke old API: function ortp_set_log_level_mask requires one new parameter 'domain'. This commit fixes compilation in my Archlinux box using ortp 1.0.1. Change-Id: I46e565f1873c7baf3c3b0aafe73951d20ce083b4
2017-03-18README.md: Use <> around all hyperlinks to render them as links in cgitHarald Welte1-6/+6
Change-Id: I4b1004d5275972249d463083e0c2af41dc46dad2
2017-03-16jenkins: add value_string termination checkNeels Hofmeyr1-0/+2
Change-Id: I37c14c1a18207f64aa5e15ec0d2503bc834b2627 Depends: libosmocore change-id I2bc93ab4781487e7685cfb63091a489cd126b1a8
2017-03-16Add README file to libosmo-abis repositoryHarald Welte2-1/+67
Change-Id: I76ced414b22637792389fcf79ae6c7159502259b
2017-03-15lapd: log pointer addressesPhilipp Maier1-2/+7
Add pointer address output to the sap alloc/free functions in order to track the objects later in the debug output (we have three of them) Change-Id: I9b961d5e36967cfd953551b24696849541257a1c
2017-03-14lapd: Reduce N200 (SABM retransmission count)Philipp Maier1-2/+2
N200, which controls the maxium number of LAPD retransmissions, is set to 300. This will cause a long waiting time until LAPD detects a failed link. This commit reduces the retransmission count to 50 in order to get a faster link re-establishment in case of link failure. This patch will only affect the ericsson LAPD profile, all other lapd profiles will not be touched. Change-Id: I4f56f9d00520adc0c0a4497547762cd054030867
2017-03-08add basic unixsocket supportAlexander Couzens7-4/+411
Allow to connect to a unix socket for communicating with LAPD. Change-Id: Ia5723b09a5c68a0505829dc732def981e60a907a
2017-02-20Enable sanitizeMax2-2/+14
Add ./configure option to enable ASAN checks and use it for jenkins tests. While at it - also move to /bin/sh shebang as we don't use bashisms anyway. Change-Id: Ie26e54ab6b850c9adf124a6bc613ec9bc9e8a6e2