2014-03-10 23:27:34 -05:00
|
|
|
// Copyright 2012-2014 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.
|
|
|
|
|
|
|
|
// ignore-linux see joyent/libuv#1189
|
|
|
|
// ignore-android needs extra network permissions
|
|
|
|
// exec-env:RUST_LOG=debug
|
|
|
|
|
2014-12-31 22:43:46 -06:00
|
|
|
#[macro_use]
|
2014-03-16 08:18:17 -05:00
|
|
|
extern crate log;
|
2014-02-26 11:58:41 -06:00
|
|
|
extern crate libc;
|
2014-03-16 08:18:17 -05:00
|
|
|
|
2015-01-02 14:05:24 -06:00
|
|
|
use std::sync::mpsc::channel;
|
2014-03-10 23:27:34 -05:00
|
|
|
use std::io::net::tcp::{TcpListener, TcpStream};
|
|
|
|
use std::io::{Acceptor, Listener};
|
2014-12-23 12:31:43 -06:00
|
|
|
use std::thread::{Builder, Thread};
|
2014-08-13 17:26:48 -05:00
|
|
|
use std::time::Duration;
|
2014-04-06 00:18:52 -05:00
|
|
|
|
2014-03-10 23:27:34 -05:00
|
|
|
fn main() {
|
|
|
|
// This test has a chance to time out, try to not let it time out
|
2014-12-23 12:31:43 -06:00
|
|
|
Thread::spawn(move|| -> () {
|
2014-03-10 23:27:34 -05:00
|
|
|
use std::io::timer;
|
2014-08-13 17:26:48 -05:00
|
|
|
timer::sleep(Duration::milliseconds(30 * 1000));
|
2014-03-10 23:27:34 -05:00
|
|
|
println!("timed out!");
|
|
|
|
unsafe { libc::exit(1) }
|
2014-12-23 12:31:43 -06:00
|
|
|
}).detach();
|
2014-03-10 23:27:34 -05:00
|
|
|
|
2014-03-13 23:26:14 -05:00
|
|
|
let (tx, rx) = channel();
|
2014-12-23 12:31:43 -06:00
|
|
|
Thread::spawn(move || -> () {
|
2014-10-30 15:22:40 -05:00
|
|
|
let mut listener = TcpListener::bind("127.0.0.1:0").unwrap();
|
2015-01-02 14:05:24 -06:00
|
|
|
tx.send(listener.socket_name().unwrap()).unwrap();
|
2014-03-10 23:27:34 -05:00
|
|
|
let mut acceptor = listener.listen();
|
|
|
|
loop {
|
|
|
|
let mut stream = match acceptor.accept() {
|
|
|
|
Ok(stream) => stream,
|
|
|
|
Err(error) => {
|
2014-10-09 14:17:22 -05:00
|
|
|
debug!("accept panicked: {}", error);
|
2014-03-10 23:27:34 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
stream.read_byte();
|
2014-11-17 18:49:09 -06:00
|
|
|
stream.write(&[2]);
|
2014-03-10 23:27:34 -05:00
|
|
|
}
|
2014-12-23 12:31:43 -06:00
|
|
|
}).detach();
|
2015-01-02 14:16:41 -06:00
|
|
|
let addr = rx.recv().unwrap();
|
2014-03-10 23:27:34 -05:00
|
|
|
|
2014-03-13 23:26:14 -05:00
|
|
|
let (tx, rx) = channel();
|
2014-04-21 16:58:52 -05:00
|
|
|
for _ in range(0u, 1000) {
|
2014-03-13 23:26:14 -05:00
|
|
|
let tx = tx.clone();
|
2014-12-14 02:05:32 -06:00
|
|
|
Builder::new().stack_size(64 * 1024).spawn(move|| {
|
2014-10-30 15:22:40 -05:00
|
|
|
match TcpStream::connect(addr) {
|
2014-03-10 23:27:34 -05:00
|
|
|
Ok(stream) => {
|
|
|
|
let mut stream = stream;
|
2014-11-17 18:49:09 -06:00
|
|
|
stream.write(&[1]);
|
2014-03-10 23:27:34 -05:00
|
|
|
let mut buf = [0];
|
2014-11-17 18:49:09 -06:00
|
|
|
stream.read(&mut buf);
|
2014-03-10 23:27:34 -05:00
|
|
|
},
|
2014-10-14 20:07:11 -05:00
|
|
|
Err(e) => debug!("{}", e)
|
2014-03-10 23:27:34 -05:00
|
|
|
}
|
2015-01-02 14:05:24 -06:00
|
|
|
tx.send(()).unwrap();
|
2014-12-14 02:05:32 -06:00
|
|
|
}).detach();
|
2014-03-10 23:27:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for all clients to exit, but don't wait for the server to exit. The
|
|
|
|
// server just runs infinitely.
|
2014-03-13 23:26:14 -05:00
|
|
|
drop(tx);
|
2014-04-21 16:58:52 -05:00
|
|
|
for _ in range(0u, 1000) {
|
2015-01-02 14:05:24 -06:00
|
|
|
rx.recv().unwrap();
|
2014-03-10 23:27:34 -05:00
|
|
|
}
|
|
|
|
unsafe { libc::exit(0) }
|
|
|
|
}
|