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

Default to IPV6_V6ONLY=1 for jsdoor

parent f524d973
No related branches found
No related tags found
No related merge requests found
......@@ -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