File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -383,6 +383,7 @@ exports['https'] = Buffer.from('01bb', 'hex')
383
383
exports [ 'onion' ] = Buffer . from ( '01bc' , 'hex' )
384
384
exports [ 'onion3' ] = Buffer . from ( '01bd' , 'hex' )
385
385
exports [ 'garlic64' ] = Buffer . from ( '01be' , 'hex' )
386
+ exports [ 'garlic32' ] = Buffer . from ( '01bf' , 'hex' )
386
387
exports [ 'quic' ] = Buffer . from ( '01cc' , 'hex' )
387
388
exports [ 'ws' ] = Buffer . from ( '01dd' , 'hex' )
388
389
exports [ 'wss' ] = Buffer . from ( '01de' , 'hex' )
@@ -393,6 +394,7 @@ exports['http'] = Buffer.from('01e0', 'hex')
393
394
exports [ 'raw' ] = Buffer . from ( '55' , 'hex' )
394
395
exports [ 'dag-pb' ] = Buffer . from ( '70' , 'hex' )
395
396
exports [ 'dag-cbor' ] = Buffer . from ( '71' , 'hex' )
397
+ exports [ 'libp2p-key' ] = Buffer . from ( '72' , 'hex' )
396
398
exports [ 'git-raw' ] = Buffer . from ( '78' , 'hex' )
397
399
exports [ 'torrent-info' ] = Buffer . from ( '7b' , 'hex' )
398
400
exports [ 'torrent-file' ] = Buffer . from ( '7c' , 'hex' )
Original file line number Diff line number Diff line change @@ -384,6 +384,7 @@ module.exports = Object.freeze({
384
384
ONION : 0x01bc ,
385
385
ONION3 : 0x01bd ,
386
386
GARLIC64 : 0x01be ,
387
+ GARLIC32 : 0x01bf ,
387
388
QUIC : 0x01cc ,
388
389
WS : 0x01dd ,
389
390
WSS : 0x01de ,
@@ -394,6 +395,7 @@ module.exports = Object.freeze({
394
395
RAW : 0x55 ,
395
396
DAG_PB : 0x70 ,
396
397
DAG_CBOR : 0x71 ,
398
+ LIBP2P_KEY : 0x72 ,
397
399
GIT_RAW : 0x78 ,
398
400
TORRENT_INFO : 0x7b ,
399
401
TORRENT_FILE : 0x7c ,
Original file line number Diff line number Diff line change @@ -383,6 +383,7 @@ module.exports = Object.freeze({
383
383
0x01bc : 'onion' ,
384
384
0x01bd : 'onion3' ,
385
385
0x01be : 'garlic64' ,
386
+ 0x01bf : 'garlic32' ,
386
387
0x01cc : 'quic' ,
387
388
0x01dd : 'ws' ,
388
389
0x01de : 'wss' ,
@@ -393,6 +394,7 @@ module.exports = Object.freeze({
393
394
0x55 : 'raw' ,
394
395
0x70 : 'dag-pb' ,
395
396
0x71 : 'dag-cbor' ,
397
+ 0x72 : 'libp2p-key' ,
396
398
0x78 : 'git-raw' ,
397
399
0x7b : 'torrent-info' ,
398
400
0x7c : 'torrent-file' ,
You can’t perform that action at this time.
0 commit comments