aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2023-09-08 15:03:56 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2023-12-22 03:04:53 +0100
commit3f940e5812213ff4b01378484fe6f1e3132343c8 (patch)
treed8e07b9b79167d4baff6e880304a56a7b0a632a3
parentce37944ce488845167083d74b3e48e6495a5fb50 (diff)
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#6171
-rw-r--r--include/osmocom/mgcp_client/mgcp_client_fsm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/mgcp_client/mgcp_client_fsm.h b/include/osmocom/mgcp_client/mgcp_client_fsm.h
index 664fb1781..9f1fb8ca1 100644
--- a/include/osmocom/mgcp_client/mgcp_client_fsm.h
+++ b/include/osmocom/mgcp_client/mgcp_client_fsm.h
@@ -61,8 +61,8 @@ struct mgcp_conn_peer {
* 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 can 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;
};