This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::comm::Sender; | |
use std::io::net::tcp::TcpStream; | |
use std::io::{Listener, Acceptor}; | |
use std::io::net::tcp::TcpListener; | |
use std::io::timer; | |
use std::time::duration::Duration; | |
// A sketch of the architecture for an IRC BNC that supports multiple client connections. | |
// I am curious if this is the optimal way to architect this kind of program. |