aboutsummaryrefslogtreecommitdiffstats
path: root/src/mtp_pcap.c
AgeCommit message (Collapse)AuthorFilesLines
2024-09-05remove old static libsccp.a, libmtp.a, libxua.aHarald Welte1-82/+0
Those static libraries were not used or maintained a long time ago. We have a much more complete implementation of SCCP and xUA in libosmo-sigtran. That has been the basis of osmo-stp, as well as in osmo-sgsn.git, osmo-bsc.git, osmo-msc.git. The only user of the old static libraries was osmo-bsc-sccplite from openbsc.git, which is unsupported for many years. Change-Id: I299a32a2f8f61477cf49c8126567fef2092d5407
2023-02-24mtp_pcap: remove unused static_assert() macro definitionVadim Yanitskiy1-2/+0
Change-Id: Ib0419a2de3aa09a2e1fba1fc2628f12295d83bda
2021-12-14treewide: remove FSF addressOliver Smith1-4/+0
Remove the paragraph about writing to the Free Software Foundation's mailing address. The FSF has changed addresses in the past, and may do so again. In 2021 this is not useful, let's rather have a bit less boilerplate at the start of source files. Change-Id: Ia450b630e0b60b38835f599c93985bbe97c50d2f
2018-10-21build: move include/{mtp,sccp} to include/osmocom/Neels Hofmeyr1-1/+1
Anywhere else in the Osmocom code base, we arrange headers in include/osmocom/foo/ and pass -I ${root_srcdir}/include/. This way including an osmocom header always has the format #include <osmocom/foo/bar.h> whether we are including from the local source tree or from $prefix. For some reason not clear to me, the mtp and sccp folders, even though they are being installed to $prefix/include/osmocom/, were kept *next* to the osmocom/ dir, instead of inside it. Fix that weird situation. The motivation is that I wanted to use a definition from sccp_types.h in a public-API header. That is impossible if it requires #include <sccp/sccp_types.h> in a local build, but #include <osmocom/sccp/sccp_types.h> for any other source tree using libosmo-sccp. After this patch, both are identical and including works without quirks. (The other patch that needed this has changed in the meantime on and no longer needs this, but this still makes sense for future hacking.) The installed result does not change, since both mtp/*.h and sccp/*.h have always been installed to $prefix/include/osmocom/{mtp,sccp}/. This merely changes their position in the source tree. The most curious situation before this is that any patch #including <osmocom/sccp/sccp_types.h> might not get a notice that the header didn't exist, but might instead include an older system-installed file. Change-Id: I1209a4ecf9f692a8030b5c93cd281fc9dd58d105
2017-11-13Add SPDX-License-Identifier + missing copyright statementsHarald Welte1-0/+2
Change-Id: I113232bbeaa7a835871df7f9b883ba573d8a2534
2010-08-01mtp: Add the MTP Level3 code to the SCCP repoistoryHolger Hans Peter Freyther1-0/+86
SCCP can be wrapped inside the MTP Level3, and one can use it for link testing as well. This repository should be renamed to libosmo-itu or libosmo-ss7 and be a host to SS7 related encapsulation... The code is coming from the cellmgr-ng code.