mirror of
https://github.com/v2fly/v2ray-core.git
synced 2026-01-06 01:05:35 -05:00
test case for http proxy
This commit is contained in:
36
testing/servers/http/http.go
Normal file
36
testing/servers/http/http.go
Normal file
@@ -0,0 +1,36 @@
|
||||
package tcp
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
v2net "github.com/v2ray/v2ray-core/common/net"
|
||||
)
|
||||
|
||||
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) {
|
||||
go http.ListenAndServe(":"+server.Port.String(), server)
|
||||
return v2net.TCPDestination(v2net.IPAddress([]byte{127, 0, 0, 1}), v2net.Port(server.Port)), nil
|
||||
}
|
||||
|
||||
func (this *Server) Close() {
|
||||
this.accepting = false
|
||||
}
|
||||
Reference in New Issue
Block a user