summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r--toxcore/tox.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 6a4df16d..40d37b0b 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -345,12 +345,12 @@ uint32_t tox_max_filename_length(void);
345/** 345/**
346 * Maximum length of a hostname, e.g. proxy or bootstrap node names. 346 * Maximum length of a hostname, e.g. proxy or bootstrap node names.
347 * 347 *
348 * This length includes the NUL byte. Hostnames are NUL-terminated C strings, so 348 * This length does not include the NUL byte. Hostnames are NUL-terminated C
349 * they are 255 characters plus one NUL byte. 349 * strings, so they are 255 characters plus one NUL byte.
350 * 350 *
351 * @deprecated The macro will be removed in 0.3.0. Use the function instead. 351 * @deprecated The macro will be removed in 0.3.0. Use the function instead.
352 */ 352 */
353#define TOX_MAX_HOSTNAME_LENGTH 256 353#define TOX_MAX_HOSTNAME_LENGTH 255
354 354
355uint32_t tox_max_hostname_length(void); 355uint32_t tox_max_hostname_length(void);
356 356