about summary refs log tree commit diff
path: root/src/libstd/rt/uv/uvll.rs
AgeCommit message (Collapse)AuthorLines
2013-08-19Add externfn macro and correctly label fixed_stack_segmentsNiko Matsakis-0/+151
2013-08-18auto merge of #8551 : huonw/rust/speling, r=alexcrichtonbors-1/+1
(This doesn't add/remove `u`s or change `ize` to `ise`, or anything like that.)
2013-08-16doc: correct spelling in documentation.Huon Wilson-1/+1
2013-08-15Add ToCStr method .with_c_str()Kevin Ballard-2/+2
.with_c_str() is a replacement for the old .as_c_str(), to avoid unnecessary boilerplate. Replace all usages of .to_c_str().with_ref() with .with_c_str().
2013-08-09auto merge of #8296 : erickt/rust/remove-str-trailing-nulls, r=ericktbors-2/+3
This PR fixes #7235 and #3371, which removes trailing nulls from `str` types. Instead, it replaces the creation of c strings with a new type, `std::c_str::CString`, which wraps a malloced byte array, and respects: * No interior nulls * Ends with a trailing null
2013-08-09Remove the C++ runtime. SayonaraBrian Anderson-9/+0
2013-08-04std: replace str::as_c_str with std::c_strErick Tryzelaar-2/+3
2013-07-25libstd: Implement some missing udp methods.Luqman Aden-3/+13
2013-07-25libstd: Implement {peer, socket}_name for new rt tcp & udp.Luqman Aden-31/+17
2013-07-23std: move StrUtil::as_c_str into StrSliceErick Tryzelaar-2/+2
2013-07-02IPv6 support for UDP and TCP.Eric Reed-6/+86
2013-06-25removed obsolete FIXMEs. formatting changes.Eric Reed-54/+24
2013-06-25satisfy the formatting checkEric Reed-1/+2
2013-06-25UDP networking with testsEric Reed-1/+1
2013-06-17Merge remote-tracking branch 'upstream/io' into ioEric Reed-0/+4
Conflicts: src/libstd/rt/uvio.rs
2013-06-17added wrappers about uv_ip{4,6}_{port,name}Eric Reed-0/+16
2013-06-14added bindings to extract udp handle from udp send requestsEric Reed-4/+12
2013-06-13Corrected libuv UDP bindings.Eric Reed-2/+2
2013-06-12Added libuv UDP function bindings.Eric Reed-0/+47
2013-05-29librustc: Stop reexporting the standard modules from prelude.Patrick Walton-0/+4
2013-05-22libstd: Fix merge fallout.Patrick Walton-0/+452