mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
add command line option for certificate path
This commit is contained in:
parent
595311e255
commit
0a4f0e201a
1 changed files with 6 additions and 5 deletions
|
@ -22,9 +22,12 @@ var supportedVersions = map[protocol.VersionNumber]bool{
|
|||
}
|
||||
|
||||
func main() {
|
||||
path := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
||||
bindTo := *flag.String("bind", "localhost", "bind to")
|
||||
certPathDefault := os.Getenv("GOPATH") + "/src/github.com/lucas-clemente/quic-go/example/"
|
||||
certPath := *flag.String("certpath", certPathDefault, "certificate directory")
|
||||
flag.Parse()
|
||||
|
||||
server, err := quic.NewServer(path+"cert.der", path+"key.der", handleStream)
|
||||
server, err := quic.NewServer(certPath+"cert.der", certPath+"key.der", handleStream)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
@ -32,10 +35,8 @@ func main() {
|
|||
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
|
||||
w.Write([]byte("Hello world!"))
|
||||
})
|
||||
bindTo := flag.String("bind", "localhost", "bind to")
|
||||
flag.Parse()
|
||||
|
||||
err = server.ListenAndServe(*bindTo + ":6121")
|
||||
err = server.ListenAndServe(bindTo + ":6121")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue