mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 04:53:24 +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
15 lines
459 B
Makefile
15 lines
459 B
Makefile
BUILT_SOURCES = \
|
|
mgcp_common.h \
|
|
$(NULL)
|
|
|
|
noinst_HEADERS = \
|
|
mgcp_client_internal.h \
|
|
mgcp_client_pool_internal.h \
|
|
$(NULL)
|
|
|
|
mgcp_common.h: $(top_srcdir)/include/osmocom/mgcp/mgcp_common.h
|
|
echo -e "/*\n\n DO NOT EDIT THIS FILE!\n THIS IS OVERWRITTEN DURING BUILD\n This is an automatic copy of <osmocom/mgcp/mgcp_common.h>\n\n */" > mgcp_common.h
|
|
cat $(top_srcdir)/include/osmocom/mgcp/mgcp_common.h >> mgcp_common.h
|
|
|
|
CLEANFILES = mgcp_common.h
|