Files
2022-05-10 19:54:49 +08:00

26 lines
562 B
Go

package bench
import (
"fmt"
"net/http"
"github.com/lwch/logging"
"github.com/lwch/natpass/code/client/conn"
"github.com/lwch/runtime"
)
func (bench *Bench) http(conn *conn.Conn, w http.ResponseWriter, r *http.Request) {
id, err := runtime.UUID(16, "0123456789abcdef")
if err != nil {
logging.Error("failed to generate link_id for bench: %s, err=%v",
bench.Name, err)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
conn.AddLink(id)
conn.SendConnectReq(id, bench.cfg)
ch := conn.ChanRead(id)
<-ch
fmt.Fprint(w, id)
}