A network stack in pure Rust designed from the ground up for both asynchronous and synchronous usage.
/
βββ cyclic_order -- Generic Code used for keeping track of out-of-order
β packets in TCP. Should be stable enough to move out of
β tree.
βββ misc -- Some random crap used by everything else.
βββ data_link
β βββ interface -- Presents the Interface link-layer drivers should
β β implement to work with the Network Layer.
β βββ udp_mock -- A mock link-layer driver built on UDP. (Requires
β libstd.)
βββ network -- Currently Just IPv4. Should contain a interface, and
β IPv4 and Ipv6 implementations.
βββ transport
βββ brown_rip -- A modified/simplified RIP, implemented on top of IPv4
β instead of UDP.
βββ static_routing -- A dummy routing package that learns no routes -- You
β can only talk to immediate neighbors.
βββ tcp -- Currently incomplete.