Skip to content
Snippets Groups Projects
Commit d241b9fb authored by Micah Elizabeth Scott's avatar Micah Elizabeth Scott
Browse files

fcserver: Listen on localhost by default

This is more secure by default, and it allows fcserver to work correctly on Mac OS when no networking is available. (With wifi disabled, a server bound to 'null' won't be listening on localhost. Blah.)
parent 13ea2088
No related branches found
No related tags found
No related merge requests found
No preview for this file type
{
"listen": [null, 7890],
"listen": ["127.0.0.1", 7890],
"verbose": true,
"color": {
......
{
"listen": ["127.0.0.1", 7890],
"listen": [null, 7890],
"verbose": true,
"color": {
......
{
"listen": [null, 7890],
"verbose": true,
"color": {
"gamma": 2.5,
"whitepoint": [1.0, 1.0, 1.0]
},
"devices": [
{
"type": "fadecandy",
"map": [
[ 0, 0, 0, 512 ]
]
}
]
}
*.o
*.d
fcserver
fcserver-osx
File deleted
......@@ -31,7 +31,7 @@
const char *defaultConfig =
" {\n"
" \"listen\": [null, 7890],\n"
" \"listen\": [\"127.0.0.1\", 7890],\n"
" \"verbose\": true,\n"
" \n"
" \"color\": {\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment