mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
253 B
16 lines
253 B
8 years ago
|
package tests
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func StartHttpServer() {
|
||
|
http.HandleFunc("/", request)
|
||
|
http.ListenAndServe(fmt.Sprintf("0.0.0.0:%d", 10702), nil)
|
||
|
}
|
||
|
|
||
|
func request(w http.ResponseWriter, r *http.Request) {
|
||
|
w.Write([]byte(HTTP_RES_STR))
|
||
|
}
|