Commit 929f7cec authored by Philip Withnall's avatar Philip Withnall

stun: Fix documentation to use ‘nul-terminated’ for strings

NULL is ((gpointer) 0). nul is '\0'. Arrays can be NULL terminated.
Strings can be nul terminated.
parent 96e1d393
...@@ -625,7 +625,7 @@ StunMessageReturn stun_message_find64 (const StunMessage *msg, ...@@ -625,7 +625,7 @@ StunMessageReturn stun_message_find64 (const StunMessage *msg,
* *
<note> <note>
<para> <para>
The string will be NULL-terminated. The string will be nul-terminated.
</para> </para>
</note> </note>
* *
...@@ -779,7 +779,7 @@ StunMessageReturn stun_message_append64 (StunMessage *msg, ...@@ -779,7 +779,7 @@ StunMessageReturn stun_message_append64 (StunMessage *msg,
* @type: The #StunAttribute to append * @type: The #StunAttribute to append
* @str: The string to append * @str: The string to append
* *
* Adds an attribute from a NULL-terminated string to a STUN message * Adds an attribute from a nul-terminated string to a STUN message
* *
* Returns: A #StunMessageReturn value. * Returns: A #StunMessageReturn value.
*/ */
...@@ -1001,7 +1001,7 @@ bool stun_optional (uint16_t t); ...@@ -1001,7 +1001,7 @@ bool stun_optional (uint16_t t);
* *
* Transforms a STUN error-code into a human readable string * Transforms a STUN error-code into a human readable string
* *
* Returns: A static pointer to a NULL-terminated error message string. * Returns: A static pointer to a nul-terminated error message string.
*/ */
const char *stun_strerror (StunError code); const char *stun_strerror (StunError code);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment