49
49
50
50
var pingCid = "bafkqaaa" // identity CID
51
51
52
+ const http2proto = "HTTP/2.0"
53
+
52
54
// Option allows to configure the Network.
53
55
type Option func (net * Network )
54
56
@@ -167,7 +169,6 @@ type Network struct {
167
169
func New (host host.Host , opts ... Option ) network.BitSwapNetwork {
168
170
htnet := & Network {
169
171
host : host ,
170
- pinger : newPinger (host ),
171
172
userAgent : defaultUserAgent (),
172
173
maxBlockSize : DefaultMaxBlockSize ,
173
174
dialTimeout : DefaultDialTimeout ,
@@ -236,10 +237,13 @@ func New(host host.Host, opts ...Option) network.BitSwapNetwork {
236
237
}
237
238
238
239
c := & http.Client {
239
- Transport : newTransport ( t ) ,
240
+ Transport : t ,
240
241
}
241
242
htnet .client = c
242
243
244
+ pinger := newPinger (host , htnet .client , pingCid , htnet .userAgent )
245
+ htnet .pinger = pinger
246
+
243
247
return htnet
244
248
}
245
249
@@ -353,7 +357,7 @@ func (ht *Network) Connect(ctx context.Context, p peer.AddrInfo) error {
353
357
// on success.
354
358
var workingAddrs []multiaddr.Multiaddr
355
359
for i , u := range urls {
356
- req , err := ht . buildRequest (ctx , u , "GET" , pingCid )
360
+ req , err := buildRequest (ctx , u , "GET" , pingCid , ht . userAgent )
357
361
if err != nil {
358
362
log .Debug (err )
359
363
return err
@@ -370,7 +374,7 @@ func (ht *Network) Connect(ctx context.Context, p peer.AddrInfo) error {
370
374
continue
371
375
}
372
376
373
- if resp .Proto != "HTTP/2.0" {
377
+ if resp .Proto != http2proto {
374
378
log .Warnf ("%s://%q is not using HTTP/2 (%s)" , req .URL .Scheme , req .URL .Host , resp .Proto )
375
379
}
376
380
@@ -452,7 +456,7 @@ func (ht *Network) Stats() network.Stats {
452
456
}
453
457
454
458
// buildRequests sets up common settings for making a requests.
455
- func ( ht * Network ) buildRequest (ctx context.Context , u network.ParsedURL , method string , cid string ) (* http.Request , error ) {
459
+ func buildRequest (ctx context.Context , u network.ParsedURL , method string , cid string , userAgent string ) (* http.Request , error ) {
456
460
// copy url
457
461
sendURL , _ := url .Parse (u .URL .String ())
458
462
sendURL .RawQuery = "format=raw"
@@ -470,7 +474,7 @@ func (ht *Network) buildRequest(ctx context.Context, u network.ParsedURL, method
470
474
471
475
headers := make (http.Header )
472
476
headers .Add ("Accept" , "application/vnd.ipld.raw" )
473
- headers .Add ("User-Agent" , ht . userAgent )
477
+ headers .Add ("User-Agent" , userAgent )
474
478
if u .SNI != "" {
475
479
headers .Add ("Host" , u .SNI )
476
480
}
0 commit comments