mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
add an HTTP endpoint to output arbitrary length data to example server
This commit is contained in:
parent
9eb5777bbb
commit
3e9ffe9e28
1 changed files with 11 additions and 0 deletions
|
@ -10,12 +10,14 @@ import (
|
|||
"log"
|
||||
"mime/multipart"
|
||||
"net/http"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
_ "net/http/pprof"
|
||||
|
||||
"github.com/lucas-clemente/quic-go/http3"
|
||||
"github.com/lucas-clemente/quic-go/integrationtests/tools/testserver"
|
||||
"github.com/lucas-clemente/quic-go/internal/testdata"
|
||||
"github.com/lucas-clemente/quic-go/internal/utils"
|
||||
)
|
||||
|
@ -122,6 +124,15 @@ func main() {
|
|||
logger.SetLogTimeFormat("")
|
||||
|
||||
http.Handle("/", http.FileServer(http.Dir(*www)))
|
||||
http.HandleFunc("/dynamic/", func(w http.ResponseWriter, r *http.Request) {
|
||||
const maxSize = 1 << 30 // 1 GB
|
||||
num, err := strconv.ParseInt(strings.ReplaceAll(r.RequestURI, "/dynamic/", ""), 10, 64)
|
||||
if err != nil || num <= 0 || num > maxSize {
|
||||
w.WriteHeader(400)
|
||||
return
|
||||
}
|
||||
w.Write(testserver.GeneratePRData(int(num)))
|
||||
})
|
||||
|
||||
if len(bs) == 0 {
|
||||
bs = binds{"localhost:6121"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue