about summary refs log tree commit diff
path: root/src/libextra/net_ip.rs
AgeCommit message (Collapse)AuthorLines
2013-07-05Move `extra::net_*` to `extra::net::*` properly.Chris Morgan-446/+0
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.
2013-06-29Great renaming: propagate throughout the rest of the codebaseCorey Richardson-13/+10
2013-06-24Merge remote-tracking branch 'reusee/master' into HEADBrian Anderson-2/+2
2013-06-23vec: remove BaseIter implementationDaniel Micay-1/+1
I removed the `static-method-test.rs` test because it was heavily based on `BaseIter` and there are plenty of other more complex uses of static methods anyway.
2013-06-22replaced some 'std::' with 'extra::' in commentsreus-2/+2
2013-06-21vec: rm old_iter implementations, except BaseIterDaniel Micay-1/+1
The removed test for issue #2611 is well covered by the `std::iterator` module itself. This adds the `count` method to `IteratorUtil` to replace `EqIter`.
2013-06-14add IteratorUtil to the preludeDaniel Micay-1/+0
2013-06-10std: replace str::each_split* with an iteratorHuon Wilson-9/+6
2013-05-30Remove copy bindings from patterns.Niko Matsakis-1/+1
2013-05-30Remove a bunch of unnecessary allocations and copiesBjörn Steinbrink-3/+2
2013-05-30libextra: Require documentation by defaultAlex Crichton-0/+2
2013-05-28Silence various warnings throughout test modulesAlex Crichton-1/+0
2013-05-23cleanup warnings from libextraErick Tryzelaar-2/+2
2013-05-22libextra: Rename the actual metadata names of libcore to libstd and libstd ↵Patrick Walton-0/+6
to libextra
2013-05-22libstd: Rename libcore to libstd and libstd to libextra; update makefiles.Patrick Walton-0/+447
This only changes the directory names; it does not change the "real" metadata names.