1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2026-01-15 05:35:48 -05:00

listen on all ips

This commit is contained in:
Darien Raymond
2017-04-17 14:06:02 +02:00
parent cdcf72cbe7
commit bf64c449de

View File

@@ -5,6 +5,6 @@ import "net/http"
func init() {
go func() {
http.ListenAndServe("localhost:6060", nil)
http.ListenAndServe(":6060", nil)
}()
}