about summary refs log tree commit diff
path: root/src/libextra/net/ip.rs
AgeCommit message (Collapse)AuthorLines
2013-07-22extra: Remove uv, net, timer codeBrian Anderson-452/+0
This will all be reimplemented in the new runtime.
2013-07-17test: Fix tests.Patrick Walton-0/+1
2013-07-17librustc: Remove all uses of "copy".Patrick Walton-3/+10
2013-07-17librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them.Patrick Walton-5/+3
2013-07-16Rename Option swap_unwrap to take_unwrap. Fixes Issue#7764Austin King-1/+1
2013-07-07remove some method resolve workaroundsDaniel Micay-1/+1
2013-07-05Remove superfluous super::super::Chris Morgan-14/+14
2013-07-05Move `extra::net_*` to `extra::net::*` properly.Chris Morgan-0/+446
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.