mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-03 23:26:29 +00:00
11 lines
172 B
Go
11 lines
172 B
Go
// +build go1.3
|
|
|
|
package mssql
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
func createDialer(p *connectParams) *net.Dialer {
|
|
return &net.Dialer{Timeout: p.dial_timeout, KeepAlive: p.keepAlive}
|
|
}
|