Codebase list golang-github-denisenkom-go-mssqldb / debian/0.0_git20170717.0.8fccfc8-5 mssql_go1.3.go
debian/0.0_git20170717.0.8fccfc8-5

Tree @debian/0.0_git20170717.0.8fccfc8-5 (Download .tar.gz)

mssql_go1.3.go @debian/0.0_git20170717.0.8fccfc8-5raw · history · blame

// +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}}
	}
}