using 127.0.0.1 by default

This commit is contained in:
Devaev Maxim
2018-10-28 07:12:19 +03:00
parent 797e9427e5
commit 6cc202133e
3 changed files with 3 additions and 3 deletions

View File

@@ -73,7 +73,7 @@ struct http_server_t *http_server_init(struct stream_t *stream) {
run->drop_same_frames_blank = 10;
A_CALLOC(server, 1);
server->host = "localhost";
server->host = "127.0.0.1";
server->port = 8080;
server->timeout = 10;
server->run = run;