|
|
@ -5,7 +5,6 @@ import (
|
|
|
|
"errors"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io"
|
|
|
|
"log"
|
|
|
|
|
|
|
|
"net"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
"os"
|
|
|
|
"strconv"
|
|
|
|
"strconv"
|
|
|
@ -58,7 +57,7 @@ func ProviderConfig(c *Config) *client.ProviderConfig {
|
|
|
|
func NewProvider(c *Config, logOutput io.Writer) (*client.Provider, net.Listener, error) {
|
|
|
|
func NewProvider(c *Config, logOutput io.Writer) (*client.Provider, net.Listener, error) {
|
|
|
|
// Get the configuration of the provider
|
|
|
|
// Get the configuration of the provider
|
|
|
|
config := ProviderConfig(c)
|
|
|
|
config := ProviderConfig(c)
|
|
|
|
config.Logger = log.New(logOutput, "", log.LstdFlags)
|
|
|
|
config.LogOutput = logOutput
|
|
|
|
|
|
|
|
|
|
|
|
// SCADA_INSECURE env variable is used for testing to disable
|
|
|
|
// SCADA_INSECURE env variable is used for testing to disable
|
|
|
|
// TLS certificate verification.
|
|
|
|
// TLS certificate verification.
|
|
|
|