-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathparameters.go
More file actions
27 lines (23 loc) · 758 Bytes
/
parameters.go
File metadata and controls
27 lines (23 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package winrm
import "net"
// Parameters struct defines
// metadata information and http transport config
type Parameters struct {
Timeout string
Locale string
EnvelopeSize int
TransportDecorator func() Transporter
Dial func(network, addr string) (net.Conn, error)
}
// DefaultParameters return constant config
// of type Parameters
var DefaultParameters = NewParameters("PT60S", "en-US", 153600)
// NewParameters return new struct of type Parameters
// this struct makes the configuration for the request, size message, etc.
func NewParameters(timeout, locale string, envelopeSize int) *Parameters {
return &Parameters{
Timeout: timeout,
Locale: locale,
EnvelopeSize: envelopeSize,
}
}