about summary refs log tree commit diff
path: root/src/libextra/net
AgeCommit message (Collapse)AuthorLines
2013-07-22extra: Remove uv, net, timer codeBrian Anderson-3507/+0
This will all be reimplemented in the new runtime.
2013-07-20librustc: Remove `pub extern` and `priv extern` from the language.Patrick Walton-5/+5
Place `pub` or `priv` on individual items instead.
2013-07-17test: Fix tests.Patrick Walton-0/+3
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-11/+22
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-7/+5
2013-07-16Rename Option swap_unwrap to take_unwrap. Fixes Issue#7764Austin King-1/+1
2013-07-08 Replaces the free-standing functions in f32, &c.Jens Nockert-2/+2
The free-standing functions in f32, f64, i8, i16, i32, i64, u8, u16, u32, u64, float, int, and uint are replaced with generic functions in num instead. If you were previously using any of those functions, just replace them with the corresponding function with the same name in num. Note: If you were using a function that corresponds to an operator, use the operator instead.
2013-07-07remove some method resolve workaroundsDaniel Micay-2/+2
2013-07-05Remove superfluous super::super::Chris Morgan-14/+14
2013-07-05Move `extra::net_*` to `extra::net::*` properly.Chris Morgan-0/+3495
Where * = tcp, ip, url. Formerly, extra::net::* were aliases of extra::net_*, but were the recommended path to use. Thus, the documentation talked of the `net_*` modules while everything else was written expecting `net::*`. This moves the actual modules so that `extra::net::*` is the actual location of the modules. This will naturally break any code which used `extra::net_*` directly. They should be altered to use `extra::net::*` (which has been the documented way of doing things for some time). This ensures that there is one, and only one, obvious way of doing things.