File tree 4 files changed +11
-6
lines changed
4 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -84,14 +84,13 @@ const stats = {}
84
84
85
85
const dht = new HyperDHT ( {
86
86
bootstrap,
87
- keyPair
87
+ keyPair,
88
+ connectionKeepAlive : conf . keepAlive
88
89
} )
89
90
90
91
const proxy = net . createServer ( { allowHalfOpen : true } , c => {
91
92
return connPiper ( c , ( ) => {
92
93
const stream = dht . connect ( Buffer . from ( peer , 'hex' ) , { reusableSocket : true } )
93
- stream . setKeepAlive ( conf . keepAlive )
94
-
95
94
return stream
96
95
} , { compress : conf . compress } , stats )
97
96
} )
Original file line number Diff line number Diff line change 9
9
"@hyper-cmd/lib-utils" : " https://github.com/holepunchto/hyper-cmd-lib-utils#v0.0.2" ,
10
10
"b4a" : " ^1.6.4" ,
11
11
"graceful-goodbye" : " ^1.3.0" ,
12
- "hyperdht" : " ^6.11 .0" ,
12
+ "hyperdht" : " ^6.14 .0" ,
13
13
"minimist" : " ^1.2.5"
14
14
},
15
15
"bin" : {
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ if (!+argv.l) {
21
21
}
22
22
23
23
const conf = { }
24
+ conf . keepAlive = 5000
24
25
25
26
if ( argv . seed ) {
26
27
conf . seed = argv . seed
@@ -51,7 +52,7 @@ const debug = argv.debug
51
52
52
53
const seed = Buffer . from ( conf . seed , 'hex' )
53
54
54
- const dht = new HyperDHT ( )
55
+ const dht = new HyperDHT ( { connectionKeepAlive : conf . keepAlive } )
55
56
const keyPair = HyperDHT . keyPair ( seed )
56
57
57
58
const stats = { cid : 0 }
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ if (argv.u && argv.l) {
27
27
}
28
28
29
29
const conf = { }
30
+ conf . keepAlive = 5000
30
31
31
32
if ( argv . seed ) {
32
33
conf . seed = argv . seed
@@ -69,7 +70,11 @@ const debug = argv.debug
69
70
70
71
const seed = Buffer . from ( conf . seed , 'hex' )
71
72
72
- const dht = new HyperDHT ( { bootstrap } )
73
+ const dht = new HyperDHT ( {
74
+ bootstrap,
75
+ connectionKeepAlive : conf . keepAlive
76
+ } )
77
+
73
78
const keyPair = HyperDHT . keyPair ( seed )
74
79
75
80
const stats = { }
You can’t perform that action at this time.
0 commit comments