about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-21 05:01:43 -0700
committerbors <bors@rust-lang.org>2013-08-21 05:01:43 -0700
commit4c75e926126435c3ea65b027ea9669213cfdae33 (patch)
treee70a0f528b9043b33ae0b79b03d4a1ae104aabd9 /src/libstd
parentc87d798fb0266bfbaa1a6bea81ba50353e3302e1 (diff)
parentb66cdb16fe0cb6faaed628ad16a98c3dd284f505 (diff)
downloadrust-4c75e926126435c3ea65b027ea9669213cfdae33.tar.gz
rust-4c75e926126435c3ea65b027ea9669213cfdae33.zip
auto merge of #8600 : sfackler/rust/http, r=brson
It's an empty stub and as one of the comments notes, doesn't belong in
libstd.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/rt/io/mod.rs1
-rw-r--r--src/libstd/rt/io/net/http.rs29
2 files changed, 0 insertions, 30 deletions
diff --git a/src/libstd/rt/io/mod.rs b/src/libstd/rt/io/mod.rs
index 9ec1b699b1d..8b18fbcfa45 100644
--- a/src/libstd/rt/io/mod.rs
+++ b/src/libstd/rt/io/mod.rs
@@ -275,7 +275,6 @@ pub mod net {
     pub mod ip;
     #[cfg(unix)]
     pub mod unix;
-    pub mod http;
 }
 
 /// Readers and Writers for memory buffers and strings.
diff --git a/src/libstd/rt/io/net/http.rs b/src/libstd/rt/io/net/http.rs
deleted file mode 100644
index c693cfaab67..00000000000
--- a/src/libstd/rt/io/net/http.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
-//! Simple HTTP client and server
-
-// XXX This should not be in core
-
-struct HttpServer;
-
-#[cfg(test)]
-mod test {
-    use unstable::run_in_bare_thread;
-
-    #[test] #[ignore]
-    fn smoke_test() {
-        do run_in_bare_thread {
-        }
-
-        do run_in_bare_thread {
-        }
-    }
-}