summary refs log tree commit diff
path: root/src/libstd/net_ip.rs
AgeCommit message (Collapse)AuthorLines
2013-03-29librustc: Remove `fail_unless!`Patrick Walton-6/+6
2013-03-28Removing unused importsAlex Crichton-1/+1
2013-03-26Switched over a bunch of splitting funktions to non-allocating iteratorsMarvin Löbel-1/+3
2013-03-18Give core::rt and std::net their own uvll bindingsBrian Anderson-14/+14
I intend to do some big refactoring and don't want to deal w/ std just now
2013-03-11Remove uses of logBrian Anderson-24/+24
2013-03-11core: Add rt mod and add the new scheduler codeBrian Anderson-14/+14
2013-03-07librustc: Convert all uses of `assert` over to `fail_unless!`Patrick Walton-6/+6
2013-03-07De-implicit-self libstdBen Striegel-3/+3
2013-03-04Remove unused imports throughout src/Alex Crichton-3/+0
2013-02-21core: Extract comm from pipes. #4742Brian Anderson-1/+1
2013-02-15libstd: Get rid of `move`.Luqman Aden-5/+5
2013-02-14librustc: Replace `impl Type : Trait` with `impl Trait for Type`. ↵Patrick Walton-1/+1
rs=implflipping
2013-02-13Remove die!, raplace invocations with fail! Issue #4524 pt 3Nick Desaulniers-7/+7
2013-02-07Make ~fn non-copyable, make &fn copyable, split barefn/closure types,Niko Matsakis-1/+0
correct handling of moves for struct-record update. Part of #3678. Fixes #2828, #3904, #4719.
2013-01-31Replace most invocations of fail keyword with die! macroNick Desaulniers-7/+7
2013-01-31Finalize moves-based-on-type implementation.Niko Matsakis-1/+2
Changes: - Refactor move mode computation - Removes move mode arguments, unary move, capture clauses (though they still parse for backwards compatibility) - Simplify how moves are handled in trans - Fix a number of illegal copies that cropped up - Workaround for bug involving def-ids in params (see details below) Future work (I'll open bugs for these...): - Improve error messages for moves that are due to bindings - Add support for moving owned content like a.b.c to borrow check, test in trans (but I think it'll "just work") - Proper fix for def-ids in params Def ids in params: Move captures into a map instead of recomputing. This is a workaround for a larger bug having to do with the def-ids associated with ty_params, which are not always properly preserved when inlining. I am not sure of my preferred fix for the larger bug yet. This current fix removes the only code in trans that I know of which relies on ty_param def-ids, but feels fragile.
2013-01-29std: Stop using oldcommBrian Anderson-35/+36
2013-01-25Merge remote-tracking branch 'brson/nocommupstream'Brian Anderson-3/+3
Conflicts: src/libcore/private.rs src/libcore/task/mod.rs src/libcore/task/spawn.rs src/libstd/net_tcp.rs src/libstd/uv_global_loop.rs src/libstd/uv_iotask.rs
2013-01-24convert most of libstd over to structsErick Tryzelaar-25/+25
2013-01-23std: Convert uv_global_loop to use pipesBrian Anderson-3/+3
2013-01-23libsyntax: Remove `fn() unsafe { ... }`. r=graydonPatrick Walton-73/+79
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-1/+14
module scope. r=tjc
2013-01-08Revert "librustc: Make unqualified identifier searches terminate at the ↵Patrick Walton-14/+1
nearest module scope. r=tjc" This reverts commit a8d37af2473da79be704c9ce2374f278c47177b6.
2013-01-08librustc: Make unqualified identifier searches terminate at the nearest ↵Patrick Walton-1/+14
module scope. r=tjc
2012-12-28libstd: Fix tests. rs=bustagePatrick Walton-0/+7
2012-12-27librustc: Terminate name searches at the nearest module scope for paths that ↵Patrick Walton-0/+19
contain at least two components. r=graydon
2012-12-14Rename core::comm to core::oldcommBrian Anderson-3/+2
2012-12-03Update license, add license boilerplate to most files. Remainder will follow.Graydon Hoare-0/+10
2012-10-20uv: implement a way to get client's ip/port.Luqman Aden-2/+21
2012-10-12Make moves explicit in std testsTim Chevalier-4/+4
2012-10-03De-export net::*. Part of #3583.Graydon Hoare-22/+13
2012-10-01Move over to calling ptr::addr_ofTim Chevalier-3/+3
Everything should now call ptr::addr_of instead of ptr::p2::addr_of. Only the pipes macro code when compiled by stage0 will call ptr::p2::addr_of. Needs a snapshot to get rid of that.
2012-09-28Demode extfmtTim Chevalier-4/+4
Needs a snapshot before this can be completed, because I changed the mode for conv_poly.
2012-09-28demode vecNiko Matsakis-1/+1
2012-09-28Long linesBrian Anderson-4/+4
2012-09-28std: Eliminate deprecated patternsBrian Anderson-9/+8
2012-09-26Demode vec::push (and convert to method)Niko Matsakis-1/+1
2012-09-25Demode core::resultBrian Anderson-8/+8
2012-09-21De-mode vec::map, vec::eachi, vec::rev_each, vec::rev_eachiNiko Matsakis-1/+1
2012-09-21Install new pub/priv/export rules as defaults, old rules accessible under ↵Graydon Hoare-0/+3
#[legacy_exports];
2012-09-19De-mode vec::each() and many of the str iteration routinesNiko Matsakis-2/+2
Note that the method foo.each() is not de-moded, nor the other vec routines.
2012-09-18Revert "replace explicit calls to vec::each with vec::each_ref, partially ↵Niko Matsakis-3/+3
demode str" This reverts commit 1be24f0758d3075d2e7f141f8831bb8a233ce86e. Not quite ready.
2012-09-18replace explicit calls to vec::each with vec::each_ref, partially demode strNiko Matsakis-3/+3
2012-09-13Fix implicit-instantiation of non-implicitly-copyable warnings.Graydon Hoare-1/+1
2012-09-11Make moves explicit in argumentsTim Chevalier-2/+2
2012-09-04Demode libstd/net_ip.rsKevin Cantu-14/+16
2012-09-04libstd: "import" -> "use"Patrick Walton-19/+17
2012-08-31std: Camel case net modulesBrian Anderson-34/+34
2012-08-29std: More camel casingBrian Anderson-1/+1
2012-08-27Convert core::result to camel caseBrian Anderson-27/+27