mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
14 lines
199 B
Go
14 lines
199 B
Go
// +build go1.3
|
|
|
|
package mssql
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func init() {
|
|
createDialer = func(p *connectParams) dialer {
|
|
return tcpDialer{&net.Dialer{Timeout: p.dial_timeout, KeepAlive: p.keepAlive}}
|
|
}
|
|
}
|