| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2012-07-04 | convert doc-attributes to doc-comments using ↵ | Gareth Daniel Smith | -21/+21 | |
| ./src/etc/sugarise-doc-comments.py (and manually tweaking) - for issue #2498 | ||||
| 2012-07-04 | Remove empty argument lists from do expressions | Ben Striegel | -2/+2 | |
| 2012-07-03 | Change crust -> extern. | Graydon Hoare | -12/+12 | |
| 2012-07-03 | Mop up a few extra native -> foreign changes. | Graydon Hoare | -12/+12 | |
| 2012-07-03 | Switch 'native' to 'extern' (or 'foreign' in some descriptions) | Graydon Hoare | -13/+13 | |
| 2012-07-02 | std: Add missing cfg attr for freebsd | Brian Anderson | -0/+1 | |
| 2012-07-02 | Merge remote-tracking branch 'brson/uv' | Brian Anderson | -10/+273 | |
| Conflicts: src/libstd/net_ip.rs src/libstd/net_tcp.rs | ||||
| 2012-07-01 | Convert to new closure syntax | Brian Anderson | -2/+2 | |
| 2012-06-30 | Eliminate usages of old sugared call syntax | Brian Anderson | -2/+2 | |
| 2012-06-29 | Switch the compiler over to using ~[] notation instead of []/~. Closes #2759. | Michael Sullivan | -9/+9 | |
| 2012-06-29 | Ignore various uv tests that fail | Brian Anderson | -1/+4 | |
| 2012-06-29 | std: uv::ll fixes for 32bit linux | Jeff Olson | -11/+54 | |
| 2012-06-29 | std: cleanups, post-rebase | Jeff Olson | -1/+1 | |
| 2012-06-29 | std/rt: cleanup and adding sockaddr_in6 mapping for win32 | Jeff Olson | -17/+20 | |
| 2012-06-29 | std: fix errors from recent rebase and vec expr/type syntax update | Jeff Olson | -9/+9 | |
| 2012-06-29 | std: addressing #2656 (ipv6 support in net::tcp) | Jeff Olson | -0/+23 | |
| .. there are some additional FIXME nags in net_tcp (L 1012) about blocking because libuv is holding unsafe ptrs to task local data. the proposed fix going is not really feasible w/ the current design, IMO, but i'll leave it there in case someone really wants to make the case without creating more hassle than it's worth. | ||||
| 2012-06-29 | std: add uv::ll::is_ipv6_addrinfo and get_INADDR_NONE | Jeff Olson | -0/+8 | |
| 2012-06-29 | std: whitespace/comment clean | Jeff Olson | -9/+11 | |
| 2012-06-29 | std: net::ip::get_addr is working w/ happy path test. needs more. | Jeff Olson | -2/+6 | |
| 2012-06-29 | std: wire-up low-level bindings to libuv's uv_getaddrinfo API and friends | Jeff Olson | -3/+33 | |
| 2012-06-29 | std: mapped addrinfo, addr_in and uv_getaddrinfo_t as rust records | Jeff Olson | -2/+78 | |
| 2012-06-29 | std: getting uv_ip6_* utils working in uv::ll | Jeff Olson | -1/+21 | |
| .. stub out some brokeness in net::tcp as a result of ipv6 coming online | ||||
| 2012-06-29 | std: adding uv::ll::ip4_name and refactored net::ip to use it | Jeff Olson | -0/+18 | |
| replaces net::ip's previously, hand-rolled impl for ipv4 addr parsing.. we're relying on libuv, now | ||||
| 2012-06-29 | std: mapping additional libuv ip string helpers.. add test for sockaddr_in6 | Jeff Olson | -2/+35 | |
| .. but the test is kind of broken.. it appears that rust pads structs for alignment purposes? I can't get the struct to == 28.. that appears to be the native size of sockaddr_in6.. so we have a size 32 struct, for now. | ||||
| 2012-06-27 | Replace more vector additions (issue #2719) | Eric Holk | -1/+1 | |
| 2012-06-26 | Change 'native' and 'crust' to 'extern'. | Graydon Hoare | -21/+21 | |
| This comes with a terminology change. All linkage-symbols are 'extern' now, including rust syms in other crates. Some extern ABIs are merely "foreign". The term "native" is retired, not clear/useful. What was "crust" is now "extern" applied to a _definition_. This is a bit of an overloading, but should be unambiguous: it means that the definition should be made available to some non-rust ABI. | ||||
| 2012-06-25 | Make vectors uglier ([]/~). Sorry. Should be temporary. Closes #2725. | Michael Sullivan | -8/+8 | |
| 2012-06-21 | Tag all remaining FIXMEs with bugs. Install rule in tidy script to enforce this. | Graydon Hoare | -1/+1 | |
| 2012-06-07 | Use #[cfg(unix)] and #[cfg(windows)] everywhere | Brian Anderson | -53/+19 | |
| 2012-06-04 | Machine types are different from int/uint, etc (Issue #2187) | Eric Holk | -9/+14 | |
| 2012-05-25 | Get rid of many implicit copies as a preliminary to Issue #2448. | Michael Sullivan | -4/+3 | |
| 2012-05-22 | std: more work on uv tests to endure valgrind's machinations against them | Jeff Olson | -1/+1 | |
| - change port of tcp server test in uv_ll to avoid conflict w/ test in net::tcp - a few places the tcp::read fn is used in test w/ a timeout.. suspend use of the timeout from here on out. | ||||
| 2012-05-22 | std: tightening up net::tcp, server/client test done, still has races.. | Jeff Olson | -1/+1 | |
| .. going to rework the listen() API to be non-blocking. | ||||
| 2012-05-22 | std: change sig of uv::ll::accept, again. | Jeff Olson | -1/+1 | |
| 2012-05-22 | std: makeing uv::ll::listen/accept use generic params for ptr args | Jeff Olson | -4/+5 | |
| more flexibility.. | ||||
| 2012-05-22 | std: tweak uv::ll::write signature and make it generic/more flexible | Jeff Olson | -4/+6 | |
| 2012-05-22 | std: misc cleanup for uv::ll | Jeff Olson | -6/+20 | |
| * tweaked the layout of sockaddr_in6 struct in anticipation of future use * changed several uv:ll fn signatures to use generics and be more flexible with ptr types they get passed * add uv_err_data and a help fn to return it.. packages up err_name and err_msg info from uv_get_last_error() stuff.. | ||||
| 2012-04-27 | std: add ll::loop_refcount binding for uv_loop_refcount | Jeff Olson | -0/+5 | |
| 2012-04-20 | std: add timer::recv_timeout() and whitespace cleanup | Jeff Olson | -1/+1 | |
| 2012-04-20 | std: dump old std::uv API.. move remaining tests into uv::ll | Jeff Olson | -2/+610 | |
| 2012-04-20 | std::uv : cleanup and an isolated test for hand-rolled high_level_loops | Jeff Olson | -2/+2 | |
| 2012-04-20 | fix uv_timer_t size in 32bit linux and windows | Jeff Olson | -8/+9 | |
| .. fixes issue, in previous commit, with global loop test hanging on 32bit linux (this was because the struct was too small, so (presumably), the data member was garbled.. yippy) | ||||
| 2012-04-20 | tweaking rust getter/setters for libuv data to use generics | Jeff Olson | -7/+8 | |
| 2012-04-20 | bindings to get/set data field on uv_loop_t* and debug log cleanup | Jeff Olson | -1/+9 | |
| 2012-04-20 | adding low-level uv_timer_* stuff to libuv bindings | Jeff Olson | -33/+140 | |
| 2012-04-06 | ignore tcp server/client test on linux 32bit, pending #2064 | Jeff Olson | -5/+5 | |
| also println->log(debug,) and assorted cleanup ahead of merge to master | ||||
| 2012-04-06 | removing some unneeded native fn mappingsin uv.rs and misc clean | Jeff Olson | -2/+0 | |
| .. 32bit linux issues persist. | ||||
| 2012-04-06 | experimenting with a different uv_buf_init impl to placate 32bit linux | Jeff Olson | -3/+23 | |
| 2012-04-06 | whitespace cleanup in uv_* | Jeff Olson | -1/+1 | |
| 2012-04-06 | adding 32bit-unix struct struct size differences | Jeff Olson | -68/+178 | |
