diff options
| author | Will Hawkins <[email protected]> | 2022-03-16 21:42:17 -0400 |
|---|---|---|
| committer | Will Hawkins <[email protected]> | 2022-03-16 21:42:17 -0400 |
| commit | 0a005d29c22ea9ea00b9c65c0cdfc6a9d5673646 (patch) | |
| tree | 79d56300222ebbced99c23348d68bce7a84754ec /lbc/lbc.go | |
| parent | aac7ecca40b9c5e4ffeedcd38f3c6bb24bd6c3e8 (diff) | |
Format: Add a line-length formatting.
Diffstat (limited to 'lbc/lbc.go')
| -rw-r--r-- | lbc/lbc.go | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -80,7 +80,10 @@ func (lbd *LoadBearingConnectionDownload) Start(ctx context.Context, debug bool) if debug { fmt.Printf("Using an SSL Key Logger for this load-bearing download.\n") } - transport.TLSClientConfig = &tls.Config{KeyLogWriter: lbd.KeyLogger, InsecureSkipVerify: true} + transport.TLSClientConfig = &tls.Config{ + KeyLogWriter: lbd.KeyLogger, + InsecureSkipVerify: true, + } } lbd.client = &http.Client{Transport: &transport} @@ -176,7 +179,10 @@ func (lbu *LoadBearingConnectionUpload) Start(ctx context.Context, debug bool) b if debug { fmt.Printf("Using an SSL Key Logger for this load-bearing upload.\n") } - transport.TLSClientConfig = &tls.Config{KeyLogWriter: lbu.KeyLogger, InsecureSkipVerify: true} + transport.TLSClientConfig = &tls.Config{ + KeyLogWriter: lbu.KeyLogger, + InsecureSkipVerify: true, + } } lbu.client = &http.Client{Transport: &transport} |
