improve public quic and h2 APIs, embedding http.Server in h2quic.Server

ref #124
This commit is contained in:
Lucas Clemente 2016-05-30 14:17:32 +02:00
parent b0bc84c5aa
commit bf3d89c795
5 changed files with 71 additions and 81 deletions

View file

@ -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)
}