Skip to content
Snippets Groups Projects
Commit 643e3b21 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Default to IPV6_V6ONLY=1 for jsdoor

parent 6aa0bb7c
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #1747 passed
......@@ -58,8 +58,14 @@ int DLLCALL set_socket_options(scfg_t* cfg, SOCKET sock, const char* protocol, c
/* Set user defined socket options */
iniFileName(cfgfile,sizeof(cfgfile),cfg->ctrl_dir,"sockopts.ini");
if((fp=iniOpenFile(cfgfile,FALSE))==NULL)
if((fp=iniOpenFile(cfgfile,FALSE))==NULL) {
#ifdef JSDOOR
int optval = 1;
// Set the only sane choice...
setsockopt(sock, IPPROTO_IPV6, IPV6_V6ONLY, (void *)&optval, sizeof(optval));
#endif
return(0);
}
list=iniReadFile(fp);
fclose(fp);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment