1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-17 13:05:24 +00:00

listen on all ips

This commit is contained in:
Darien Raymond 2017-04-17 14:06:02 +02:00
parent cdcf72cbe7
commit bf64c449de
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

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