Redo networking (#22)

* Rewriting network functions

* Add buffer to dup
Fix non-blocking handling by triggering once on enabling events to read to EOF

* Modifications for UDP API

* Implement TCP client side

* Add active close

* Add DMAR parser

* Implement basic TCP listening. Need to improve the state machine

* Reduce debugging

* Fixes for close procedure

* Updates to fix path processing in libstd
This commit is contained in:
Jeremy Soller
2016-10-26 13:19:56 -06:00
committed by GitHub
parent 580f30e520
commit 1a1fb1f5e1
12 changed files with 50 additions and 30 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ impl Scheme for DebugScheme {
Ok(0)
}
fn dup(&self, _file: usize) -> Result<usize> {
fn dup(&self, _file: usize, _buf: &[u8]) -> Result<usize> {
Ok(0)
}