dexter has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-mgw/+/34350?usp=email )
Change subject: mgcp_client_fsm: explain member param in struct mgcp_conn_peer better ......................................................................
mgcp_client_fsm: explain member param in struct mgcp_conn_peer better
The struct member param specifies additional codec parameters. Let's improve its explaination.
Change-Id: Iea4dc1e72fccaa464ce503fae88b5d8a867b1d19 Related: OS#5723 --- M include/osmocom/mgcp_client/mgcp_client_fsm.h 1 file changed, 15 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-mgw refs/changes/50/34350/1
diff --git a/include/osmocom/mgcp_client/mgcp_client_fsm.h b/include/osmocom/mgcp_client/mgcp_client_fsm.h index 0a5b8d5..245e0a7 100644 --- a/include/osmocom/mgcp_client/mgcp_client_fsm.h +++ b/include/osmocom/mgcp_client/mgcp_client_fsm.h @@ -58,8 +58,8 @@ * address is set. If != MGCP_CONN_NONE, force this conn mode. */ enum mgcp_connection_mode conn_mode;
- /*! If the codec requires additional format parameters (fmtp), those cann be set here, see also - * mgcp_common.h */ + /*! Global codec params. In case the codec requires additional format parameters (fmtp), those cann be set + * here, see also mgcp_common.h. The format parameters will be applied on all codecs where applicable. */ bool param_present; struct mgcp_codec_param param; };