add setting for whether to bind the wifi socket to any address or to loopback only

This commit is contained in:
StapleButter
2017-07-16 00:57:26 +02:00
parent bb963c35a4
commit 08bdef481f
7 changed files with 35 additions and 6 deletions

View File

@ -35,6 +35,8 @@ int DirectBoot;
int Threaded3D;
int SocketBindAnyAddr;
typedef struct
{
char Name[16];
@ -81,6 +83,8 @@ ConfigEntry ConfigFile[] =
{"Threaded3D", 0, &Threaded3D, 1, NULL, 0},
{"SockBindAnyAddr", 0, &SocketBindAnyAddr, 0, NULL, 0},
{"", -1, NULL, 0, NULL, 0}
};