From 195cd3740f0dfabc12669572097b5a6bab7bd490 Mon Sep 17 00:00:00 2001 From: sauwming Date: Mon, 20 Mar 2023 14:25:16 +0800 Subject: [PATCH] Modify default value of PJ_MAX_HOSTNAME (#3438) --- pjlib/include/pj/config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pjlib/include/pj/config.h b/pjlib/include/pj/config.h index 028948e99b..c70fbae684 100644 --- a/pjlib/include/pj/config.h +++ b/pjlib/include/pj/config.h @@ -668,10 +668,10 @@ * Libraries sometimes needs to make copy of an address to stack buffer; * the value here affects the stack usage. * - * Default: 128 + * Default: 253 */ #ifndef PJ_MAX_HOSTNAME -# define PJ_MAX_HOSTNAME (128) +# define PJ_MAX_HOSTNAME (253) #endif /**