Skip to content

Commit

Permalink
Fix chat server ALPNs
Browse files Browse the repository at this point in the history
  • Loading branch information
mengelbart committed Mar 19, 2024
1 parent 7edce14 commit e4c29f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/chat-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func generateTLSConfigWithCertAndKey(certFile, keyFile string) (*tls.Config, err
}
return &tls.Config{
Certificates: []tls.Certificate{cert},
NextProtos: []string{"moq-00"},
NextProtos: []string{"moq-00", "h3"},
}, nil
}

Expand Down

0 comments on commit e4c29f1

Please sign in to comment.