aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-11-20 17:18:03 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2017-11-20 21:38:50 +0000
commite90f13e82dbba37865098d1ebdeee0e35ad3326f (patch)
treea4addad79f06b77c5eb07464083b15fe90837761
parent8e1c07308c10abd6aab7c8fb32efd6eed6875f7c (diff)
api doc: clarify byte order in ranap_new_msg_rab_assign_*
-rw-r--r--src/ranap_msg_factory.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ranap_msg_factory.c b/src/ranap_msg_factory.c
index 64d87f9..ef3e9ef 100644
--- a/src/ranap_msg_factory.c
+++ b/src/ranap_msg_factory.c
@@ -716,7 +716,8 @@ static void assign_new_ra_id(RANAP_RAB_ID_t *id, uint8_t rab_id)
/*! \brief generate RANAP RAB ASSIGNMENT REQUEST message for CS (voice).
* See 3GPP TS 25.413 8.2.
- * RAB ID: 3GPP TS 25.413 9.2.1.2
+ * RAB ID: 3GPP TS 25.413 9.2.1.2.
+ * \param rtp_ip MGW's RTP IPv4 address in *network* byte order.
*/
struct msgb *ranap_new_msg_rab_assign_voice(uint8_t rab_id, uint32_t rtp_ip,
uint16_t rtp_port,
@@ -785,7 +786,8 @@ struct msgb *ranap_new_msg_rab_assign_voice(uint8_t rab_id, uint32_t rtp_ip,
return msg;
}
-/*! \brief generate RANAP RAB ASSIGNMENT REQUEST message for PS (data) */
+/*! \brief generate RANAP RAB ASSIGNMENT REQUEST message for PS (data)
+ * \param gtp_ip SGSN's GTP IPv4 address in *network* byte order. */
struct msgb *ranap_new_msg_rab_assign_data(uint8_t rab_id, uint32_t gtp_ip,
uint32_t gtp_tei, bool use_x213_nsap)
{