summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorMatt Holt <mholt@users.noreply.github.com>2019-09-10 08:03:37 -0600
committerGitHub <noreply@github.com>2019-09-10 08:03:37 -0600
commit0c8ad52be127add6f2c050230f1f166ecbde813c (patch)
treec502e856dcafaeede16f1d904e15546aa80b0cad /cmd
parentd67d8cf5a88d3635148b2e58205c9d3bb630243c (diff)
Experimental IETF-standard HTTP/3 support (known issue exists) (#2727)
* Begin WIP integration of HTTP/3 support * http3: Set actual Handler, make fakeClosePacketConn type for UDP sockets Also use latest quic-go for ALPN fix * Manually keep track of and close HTTP/3 listeners * Update quic-go after working through some http3 bugs * Fix go mod * Make http3 optional for now
Diffstat (limited to 'cmd')
-rw-r--r--cmd/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/main.go b/cmd/main.go
index 3b44a85..5b97992 100644
--- a/cmd/main.go
+++ b/cmd/main.go
@@ -33,7 +33,7 @@ import (
func Main() {
caddy.TrapSignals()
- if len(os.Args) <= 1 {
+ if len(os.Args) < 2 {
fmt.Println(usageString())
return
}