Skip to content

Commit 16e6e5c

Browse files
authored
Merge pull request #15 from HDegroote/set-keep-alive
Always set keetAlive
2 parents 531873a + 0f2b3a8 commit 16e6e5c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

client.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,13 @@ const stats = {}
8484

8585
const dht = new HyperDHT({
8686
bootstrap,
87-
keyPair
87+
keyPair,
88+
connectionKeepAlive: conf.keepAlive
8889
})
8990

9091
const proxy = net.createServer({ allowHalfOpen: true }, c => {
9192
return connPiper(c, () => {
9293
const stream = dht.connect(Buffer.from(peer, 'hex'), { reusableSocket: true })
93-
stream.setKeepAlive(conf.keepAlive)
94-
9594
return stream
9695
}, { compress: conf.compress }, stats)
9796
})

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"@hyper-cmd/lib-utils": "https://github.com/holepunchto/hyper-cmd-lib-utils#v0.0.2",
1010
"b4a": "^1.6.4",
1111
"graceful-goodbye": "^1.3.0",
12-
"hyperdht": "^6.11.0",
12+
"hyperdht": "^6.14.0",
1313
"minimist": "^1.2.5"
1414
},
1515
"bin": {

pub.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ if (!+argv.l) {
2121
}
2222

2323
const conf = {}
24+
conf.keepAlive = 5000
2425

2526
if (argv.seed) {
2627
conf.seed = argv.seed
@@ -51,7 +52,7 @@ const debug = argv.debug
5152

5253
const seed = Buffer.from(conf.seed, 'hex')
5354

54-
const dht = new HyperDHT()
55+
const dht = new HyperDHT({ connectionKeepAlive: conf.keepAlive })
5556
const keyPair = HyperDHT.keyPair(seed)
5657

5758
const stats = { cid: 0 }

server.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ if (argv.u && argv.l) {
2727
}
2828

2929
const conf = {}
30+
conf.keepAlive = 5000
3031

3132
if (argv.seed) {
3233
conf.seed = argv.seed
@@ -69,7 +70,11 @@ const debug = argv.debug
6970

7071
const seed = Buffer.from(conf.seed, 'hex')
7172

72-
const dht = new HyperDHT({ bootstrap })
73+
const dht = new HyperDHT({
74+
bootstrap,
75+
connectionKeepAlive: conf.keepAlive
76+
})
77+
7378
const keyPair = HyperDHT.keyPair(seed)
7479

7580
const stats = {}

0 commit comments

Comments
 (0)