mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 21:13:44 +00:00
At the moment the MGCP Client only supports one MGW per application. Depending on the requirements of the application one MGW might not offer the performance needed. Lets add support for an MGCP Client pool that is backward compatible to existing applications. Change-Id: Icaaba0e470e916eefddfee750b83f5f65291a6b0 Related: SYS#5091
20 lines
557 B
Makefile
20 lines
557 B
Makefile
SUBDIRS = \
|
|
osmocom \
|
|
$(NULL)
|
|
|
|
nobase_include_HEADERS = \
|
|
osmocom/mgcp_client/mgcp_client.h \
|
|
osmocom/mgcp_client/mgcp_client_endpoint_fsm.h \
|
|
osmocom/mgcp_client/mgcp_client_fsm.h \
|
|
osmocom/mgcp_client/mgcp_client_pool.h \
|
|
osmocom/mgcp/mgcp.h \
|
|
osmocom/mgcp/mgcp_common.h \
|
|
osmocom/mgcp/osmux.h \
|
|
$(NULL)
|
|
|
|
# This gets copied during make from osmocom/mgcp/mgcp_common.h. Therefore it is not included in the source tree and we
|
|
# don't need to distribute it (OS#4084).
|
|
nobase_nodist_include_HEADERS = \
|
|
osmocom/mgcp_client/mgcp_common.h \
|
|
$(NULL)
|