mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
fix the /dynamic endpoint on the example server
This commit is contained in:
parent
1441923ab0
commit
58ef419869
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ func setupHandler(www string, trace bool) http.Handler {
|
|||
</form></body></html>`)
|
||||
})
|
||||
|
||||
http.HandleFunc("/dynamic/", func(w http.ResponseWriter, r *http.Request) {
|
||||
mux.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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue