1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-14 16:34:33 -04:00
v2fly/testing/servers/http/http.go
2017-08-29 12:56:57 +02:00

37 lines
758 B
Go

package tcp
import (
"net/http"
"v2ray.com/core/common/net"
)
type Server struct {
Port net.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() (net.Destination, error) {
go http.ListenAndServe("127.0.0.1:"+server.Port.String(), server)
return net.TCPDestination(net.LocalHostIP, net.Port(server.Port)), nil
}
func (v *Server) Close() {
v.accepting = false
}