mirror of
https://github.com/logos-storage/nim-libp2p.git
synced 2026-01-02 13:43:11 +00:00
* add 'dns' multiaddr protocol * multiaddr: isWire is true for DNS protocols * resolve dns on connect * fix typo * add dns test * update resolveDns error handling * handle multiple dns entries * start of new resolver * working dns resolver * use the DnsResolver * fix json logs * small overhaul * fix dns implem in lp2p * update dnsclient repo * add dns test to testnative * dummy dns server for ut * better mocked * moved resolving to transport * moved mockresolver to libp2p * test resolve in switch test * try multiple txt & track leaks * raise e * catchable error instead of exception * save failed dns server * moved resolve back to dialer * remove nameresolver from dialer
30 lines
546 B
Nim
30 lines
546 B
Nim
import testvarint,
|
|
testminprotobuf,
|
|
teststreamseq,
|
|
testsemaphore
|
|
|
|
import testminasn1,
|
|
testrsa,
|
|
testecnist,
|
|
tested25519,
|
|
testsecp256k1,
|
|
testcrypto
|
|
|
|
import testmultibase,
|
|
testmultihash,
|
|
testmultiaddress,
|
|
testcid,
|
|
testpeerid
|
|
|
|
import testtcptransport,
|
|
testnameresolve,
|
|
testwstransport,
|
|
testmultistream,
|
|
testbufferstream,
|
|
testidentify,
|
|
testconnmngr,
|
|
testswitch,
|
|
testnoise,
|
|
testpeerinfo,
|
|
testmplex
|