Fast UdpSocket reader

* message needs to fit into 256 bytes
* allocator to keep track of blocks of messages
* udp socket receiver server that fills up the block as fast as possible
* udp socket sender server that sends out the block as fast as possible
This commit is contained in:
Anatoly Yakovenko
2018-03-07 13:47:13 -08:00
parent 1e07014f86
commit 0135971769
4 changed files with 462 additions and 0 deletions

View File

@ -8,12 +8,16 @@ pub mod log;
pub mod mint;
pub mod logger;
pub mod historian;
pub mod streamer;
pub mod accountant;
pub mod accountant_skel;
pub mod accountant_stub;
pub mod result;
extern crate bincode;
extern crate chrono;
extern crate generic_array;
#[macro_use]
extern crate log as logging;
extern crate rayon;
extern crate ring;
extern crate serde;
@ -22,3 +26,7 @@ extern crate serde_derive;
extern crate serde_json;
extern crate sha2;
extern crate untrusted;
#[cfg(test)]
#[macro_use]
extern crate matches;