mirror of
https://github.com/logos-storage/nim-libp2p.git
synced 2026-01-02 13:43:11 +00:00
* start of websocket transport * more ws tests * switch to common test * add close to wsstream * update ws & chronicles version * cleanup * removed multicodec * clean ws outgoing connections * renamed to websock * removed stream from logs * renamed ws to websock * add connection closing test to common transport * close incoming connection on ws stop * renamed testwebsocket.nim -> testwstransport.nim * removed raise todo * split out/in connections * add wss to tests * Fix tls (#608) * change log level * fixed issue related to stopping some cosmetic cleanup * use `allFutures` to stop/close things Prevent potential race conditions when stopping two or more transports * misc * point websock to server-case-object branch * interop test with go * removed websock version specification * add daemon -> native ws test * fix & test closed read/write * update readOnce, thanks jangko Co-authored-by: Dmitriy Ryajov <dryajov@gmail.com>
29 lines
522 B
Nim
29 lines
522 B
Nim
import testvarint,
|
|
testminprotobuf,
|
|
teststreamseq,
|
|
testsemaphore
|
|
|
|
import testminasn1,
|
|
testrsa,
|
|
testecnist,
|
|
tested25519,
|
|
testsecp256k1,
|
|
testcrypto
|
|
|
|
import testmultibase,
|
|
testmultihash,
|
|
testmultiaddress,
|
|
testcid,
|
|
testpeerid
|
|
|
|
import testtcptransport,
|
|
testwstransport,
|
|
testmultistream,
|
|
testbufferstream,
|
|
testidentify,
|
|
testconnmngr,
|
|
testswitch,
|
|
testnoise,
|
|
testpeerinfo,
|
|
testmplex
|