diff options
author | Runxi Yu <me@runxiyu.org> | 2025-03-24 22:28:22 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2025-03-24 22:28:22 +0800 |
commit | 0ae60a244615def8101e585625e4ecb3015ac081 (patch) | |
tree | a8e83f2fd20e0e0a77c74bb1bb163bab96b609ca | |
parent | readme: Move the mechanism up a bit (diff) | |
download | powxy-0ae60a244615def8101e585625e4ecb3015ac081.tar.gz powxy-0ae60a244615def8101e585625e4ecb3015ac081.tar.zst powxy-0ae60a244615def8101e585625e4ecb3015ac081.zip |
Use sha256.Size rather than 256
-rw-r--r-- | flags.go | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 } |