summary refs log tree commit diff
path: root/src/libnative/io/net.rs
AgeCommit message (Collapse)AuthorLines
2014-01-06Don't wait for a full buffer when reading TCPAlex Crichton-4/+4
libnative erroneously would attempt to fill the entire buffer in a call to `read` before returning, when rather it should return immediately because there's not guaranteed to be any data that will ever be received again. Close #11328
2014-01-05Handle EINTR throughout libnativeAlex Crichton-18/+26
Closes #11214
2014-01-01libnative: Use [from|to]_be16 instead of bswap16Carl-Anton Ingmarsson-6/+2
2013-12-31auto merge of #11187 : alexcrichton/rust/once, r=brsonbors-9/+4
Rationale can be found in the first commit, but this is basically the same thing as `pthread_once`
2013-12-31Convert relevant static mutexes to OnceAlex Crichton-9/+4
2013-12-31Implement native UDP I/OAlex Crichton-87/+262
2013-12-27Implement native TCP I/OAlex Crichton-0/+412