I have two shared libraries. A lib loads lib B by using dlopen
.
They implement same set of APIs.
My client running on the same system, when it tries to access the API which library it is going to load?
Or this is an invalid thing to do ? I have to make B a static library.
My goal is to have client only access lib A.