Updated the maximum length of the socks5 user and password to comply to RFC 1929, where both the password and the username length is definied as a maximum of 255

This commit is contained in:
kelek-
2020-04-11 13:19:31 -07:00
committed by Patrick
parent 3871fbaacb
commit 37192a9136
+2 -2
View File
@@ -301,8 +301,8 @@ struct hexchatprefs
char hex_irc_user_name[127]; char hex_irc_user_name[127];
char hex_net_bind_host[127]; char hex_net_bind_host[127];
char hex_net_proxy_host[64]; char hex_net_proxy_host[64];
char hex_net_proxy_pass[32]; char hex_net_proxy_pass[256];
char hex_net_proxy_user[32]; char hex_net_proxy_user[256];
char hex_stamp_log_format[64]; char hex_stamp_log_format[64];
char hex_stamp_text_format[64]; char hex_stamp_text_format[64];
char hex_text_background[PATHLEN + 1]; char hex_text_background[PATHLEN + 1];