Codebase list golang-github-denisenkom-go-mssqldb / cme/main mssql_go1.3.go
cme/main

Tree @cme/main (Download .tar.gz)

mssql_go1.3.go @cme/mainraw · 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}}
	}
}