aboutsummaryrefslogtreecommitdiff
path: root/flags.go
diff options
context:
space:
mode:
Diffstat (limited to 'flags.go')
-rw-r--r--flags.go7
1 files changed, 5 insertions, 2 deletions
diff --git a/flags.go b/flags.go
index 1cf8b63..007332c 100644
--- a/flags.go
+++ b/flags.go
@@ -3,7 +3,10 @@
package main
-import "flag"
+import (
+ "crypto/sha256"
+ "flag"
+)
var (
listenAddr string
@@ -27,5 +30,5 @@ func init() {
flag.IntVar(&idleTimeout, "idle-timeout", 0, "idle timeout in seconds, 0 for no timeout")
flag.IntVar(&readHeaderTimeout, "read-header-timeout", 30, "read header timeout in seconds, 0 for no timeout")
flag.Parse()
- global.NeedBitsReverse = 256 - global.NeedBits
+ global.NeedBitsReverse = sha256.Size - global.NeedBits
}