mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
improve public quic and h2 APIs, embedding http.Server in h2quic.Server
ref #124
This commit is contained in:
parent
b0bc84c5aa
commit
bf3d89c795
5 changed files with 71 additions and 81 deletions
|
@ -68,13 +68,6 @@ func main() {
|
|||
})
|
||||
http.Handle("/", http.FileServer(http.Dir(*www)))
|
||||
|
||||
server, err := h2quic.NewServer(tlsConfig)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// server.CloseAfterFirstRequest = true
|
||||
|
||||
if len(bs) == 0 {
|
||||
bs = binds{"localhost:6121"}
|
||||
}
|
||||
|
@ -84,7 +77,14 @@ func main() {
|
|||
for _, b := range bs {
|
||||
bCap := b
|
||||
go func() {
|
||||
err := server.ListenAndServe(bCap, nil)
|
||||
server := h2quic.Server{
|
||||
// CloseAfterFirstRequest: true,
|
||||
Server: &http.Server{
|
||||
Addr: bCap,
|
||||
TLSConfig: tlsConfig,
|
||||
},
|
||||
}
|
||||
err := server.ListenAndServe()
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue