浏览代码

修复随机数的问题

Spedoske 5 年之前
父节点
当前提交
51aaa16d79
共有 2 个文件被更改,包括 4 次插入0 次删除
  1. 3 0
      .goreleaser.yml
  2. 1 0
      util.go

+ 3 - 0
.goreleaser.yml

@@ -27,8 +27,11 @@ archives:
     darwin: MacOS
     darwin: MacOS
     linux: Linux
     linux: Linux
     windows: Windows
     windows: Windows
+    freebsd: Freebsd
     386: x86
     386: x86
     amd64: x64
     amd64: x64
+  files:
+    - ip.txt
 checksum:
 checksum:
   name_template: 'checksums.txt'
   name_template: 'checksums.txt'
 snapshot:
 snapshot:

+ 1 - 0
util.go

@@ -89,6 +89,7 @@ const failTime = 4
 type CloudflareIPDataSet []CloudflareIPData
 type CloudflareIPDataSet []CloudflareIPData
 
 
 func initipEndWith() {
 func initipEndWith() {
+    rand.Seed(time.Now().UnixNano())
 	ipEndWith = uint8(rand.Intn(254) + 1)
 	ipEndWith = uint8(rand.Intn(254) + 1)
 }
 }