aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-24 22:28:22 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-24 22:28:22 +0800
commit0ae60a244615def8101e585625e4ecb3015ac081 (patch)
treea8e83f2fd20e0e0a77c74bb1bb163bab96b609ca
parentreadme: Move the mechanism up a bit (diff)
downloadpowxy-0ae60a244615def8101e585625e4ecb3015ac081.tar.gz
powxy-0ae60a244615def8101e585625e4ecb3015ac081.tar.zst
powxy-0ae60a244615def8101e585625e4ecb3015ac081.zip
Use sha256.Size rather than 256
-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
}