1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 16:26:02 -04:00
v2fly/testing/servers/http/http.go

37 lines
780 B
Go
Raw Normal View History

2016-01-24 15:48:38 -05:00
package tcp
import (
"net/http"
2016-08-20 14:55:45 -04:00
v2net "v2ray.com/core/common/net"
2016-01-24 15:48:38 -05:00
)
type Server struct {
Port v2net.Port
PathHandler map[string]http.HandlerFunc
accepting bool
}
func (server *Server) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
if req.URL.Path == "/" {
resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
resp.WriteHeader(http.StatusOK)
resp.Write([]byte("Home"))
return
}
handler, found := server.PathHandler[req.URL.Path]
if found {
handler(resp, req)
}
}
func (server *Server) Start() (v2net.Destination, error) {
2016-05-29 10:37:52 -04:00
go http.ListenAndServe("127.0.0.1:"+server.Port.String(), server)
2016-05-16 14:53:18 -04:00
return v2net.TCPDestination(v2net.LocalHostIP, v2net.Port(server.Port)), nil
2016-01-24 15:48:38 -05:00
}
func (this *Server) Close() {
this.accepting = false
}