mirror of
https://github.com/cloudflare/cloudflared.git
synced 2026-06-23 04:10:20 +00:00
11cbff4ff7
Func spec: https://wiki.cfops.it/x/ZcBKHw
13 lines
180 B
Plaintext
13 lines
180 B
Plaintext
// +build fips
|
|
|
|
package main
|
|
|
|
import (
|
|
_ "crypto/tls/fipsonly"
|
|
"github.com/cloudflare/cloudflared/cmd/cloudflared/tunnel"
|
|
)
|
|
|
|
func init () {
|
|
tunnel.FipsEnabled = true
|
|
}
|