Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TLSHandshakeFirst (0.05 sec)

  1. internal/event/target/nats.go

    	Token             string    `json:"token"`
    	NKeySeed          string    `json:"nKeySeed"`
    	TLS               bool      `json:"tls"`
    	TLSSkipVerify     bool      `json:"tlsSkipVerify"`
    	TLSHandshakeFirst bool      `json:"tlsHandshakeFirst"`
    	Secure            bool      `json:"secure"`
    	CertAuthority     string    `json:"certAuthority"`
    	ClientCert        string    `json:"clientCert"`
    	ClientKey         string    `json:"clientKey"`
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Apr 27 04:30:57 UTC 2025
    - 13.5K bytes
    - Viewed (0)
  2. internal/config/notify/legacy.go

    		},
    		config.KV{
    			Key:   target.NATSTLSSkipVerify,
    			Value: config.FormatBool(cfg.Secure),
    		},
    		config.KV{
    			Key:   target.NATSTLSHandshakeFirst,
    			Value: config.FormatBool(cfg.TLSHandshakeFirst),
    		},
    		config.KV{
    			Key:   target.NATSPingInterval,
    			Value: strconv.FormatInt(cfg.PingInterval, 10),
    		},
    		config.KV{
    			Key:   target.NATSQueueDir,
    			Value: cfg.QueueDir,
    		},
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Apr 27 04:30:57 UTC 2025
    - 13.3K bytes
    - Viewed (0)
  3. internal/config/notify/parse.go

    			TLS:               env.Get(tlsEnv, kv.Get(target.NATSTLS)) == config.EnableOn,
    			TLSSkipVerify:     env.Get(tlsSkipVerifyEnv, kv.Get(target.NATSTLSSkipVerify)) == config.EnableOn,
    			TLSHandshakeFirst: env.Get(tlsHandshakeFirstEnv, kv.Get(target.NATSTLSHandshakeFirst)) == config.EnableOn,
    			PingInterval:      pingInterval,
    			QueueDir:          env.Get(queueDirEnv, kv.Get(target.NATSQueueDir)),
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 47.5K bytes
    - Viewed (0)
Back to top