mirror of https://github.com/sipwise/libtcap.git
These are data types and symbols for which we do not have any control over their API/ABI guarantees and means we cannot update to newer ASN1C versions w/o continuously bumping the SONAME. Stop exposing them as part of our public interface, which requires a SONAME bump as this is an API and ABI breaking change. Add a version script to control the ABI that we expose. Change-Id: I4077da7b47bb48007a17027215ca33bfb201a3b7coverity_scan
parent
c624c61c74
commit
2e515dd48a
@ -1,4 +1,4 @@
|
||||
*.sw?
|
||||
*.so
|
||||
*.so.0
|
||||
*.so.*
|
||||
*.o
|
||||
|
@ -0,0 +1,11 @@
|
||||
LIBTCAP_1 {
|
||||
global:
|
||||
tcap_encode_with_routing;
|
||||
tcap_extract;
|
||||
inap_extract;
|
||||
isup_convert_number;
|
||||
isup_convert_number_hex;
|
||||
|
||||
local:
|
||||
*;
|
||||
};
|
Loading…
Reference in new issue