Skip to content

Commit 1232150

Browse files
committed
Make the example listen to the default IP address (i.e. on all interfaces.)
1 parent 9ff82be commit 1232150

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/network/example/http/fileserver.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ int main(int argc, char * argv[]) {
175175
file_cache cache(".");
176176
file_server handler(cache);
177177
utils::thread_pool thread_pool(4);
178-
server instance("127.0.0.1", "8000", handler, thread_pool);
178+
server instance("0.0.0.0", "8000", handler, thread_pool);
179179
instance.run();
180180
return 0;
181181
}

0 commit comments

Comments
 (0)