You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

mssql_go1.3.go 171B

1234567891011
  1. // +build go1.3
  2. package mssql
  3. import (
  4. "net"
  5. )
  6. func createDialer(p connectParams) *net.Dialer {
  7. return &net.Dialer{Timeout: p.dial_timeout, KeepAlive: p.keepAlive}
  8. }