amdfxlucas
amdfxlucas
I'm using lsquic through the nexus-lsquic library from c++ (https://github.com/cbodley/nexus). My aim is to implement QUIC transport for the cpp-libp2p project[https://github.com/libp2p/cpp-libp2p]. When i run the simple client-server Echo example I...
implement QUIC transport with nexus-lsquic library based on boost::asio (https://github.com/cbodley/nexus) ( my fork https://github.com/amdfxlucas/nexus.git 'dev' branch) QuicConnections are inherently CapableConnections and thus need no Upgrader and Muxer. Todo: deferRead/Write Callbacks...
start the endhost containers ('hnode') only after the routers ('rnode') and cs_services ('csnode') and any other infrastructure it depends on are up. This puts an end to many annoying wait-conditions...
## Intra domain topologies for ASes ### Formats - ORBIS - INET - BRITE - python networkx Graphs #### Three ASes mutually connected by IXPs See examples/scion/S06-intra-domain-topo/three_core_as_with_topo.py 
@kevin-w-du realistic network simulations require a realistic topology, so most simulators allow to read it from file. There are various formats output by different topology generators i.e. : - BRITE...
with [intra AS topologies](https://github.com/seed-labs/seed-emulator/issues/177) i would like to have a means for the client web app to visualize underlay paths taken by packets in the simulation, between two end hosts...
### Proposal: Remote Development Service The DevelopmentService prepares a node for [Remote Development with VSCode](https://code.visualstudio.com/docs/remote/remote-overview). It installs the VSCode Remote Server on the Node during the docker image build, which...
bug fix
- connection_state::open::incoming_streams was uninitialized ( connection erroneously couldnt accept streams because circular buffer wrongly deemed full (capacity zero) ) - reading from stream never returned EOF after peer shutdown its...