v2ray-core/testing/servers/http/http.go

37 lines
758 B
Go
Raw Normal View History

2016-01-24 20:48:38 +00:00
package tcp
import (
"net/http"
"v2ray.com/core/common/net"
2016-01-24 20:48:38 +00:00
)
type Server struct {
Port net.Port
2016-01-24 20:48:38 +00:00
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() (net.Destination, error) {
2016-05-29 14:37:52 +00:00
go http.ListenAndServe("127.0.0.1:"+server.Port.String(), server)
return net.TCPDestination(net.LocalHostIP, net.Port(server.Port)), nil
2016-01-24 20:48:38 +00:00
}
2016-11-27 20:39:09 +00:00
func (v *Server) Close() {
v.accepting = false
2016-01-24 20:48:38 +00:00
}