From a17de7ec09e41789d469a5c939894c54f494ad4e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Thu, 4 Sep 2014 11:54:28 -0400 Subject: move connection initialization into the client --- examples/client.rs | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) (limited to 'examples') diff --git a/examples/client.rs b/examples/client.rs index 90a6b32..98900ef 100644 --- a/examples/client.rs +++ b/examples/client.rs @@ -1,30 +1,7 @@ extern crate irc; -use irc::constants::{CommandMessage, Nick, User}; - fn main () { - let mut client = irc::Client::new("doytest", "chat.freenode.net", 6667); - client.connect(); - - client.write( - irc::Message::new( - None, - CommandMessage(Nick), - vec!["doytest".to_string()], - ) - ); - client.write( - irc::Message::new( - None, - CommandMessage(User), - vec![ - "doytest".to_string(), - "localhost".to_string(), - "localhost".to_string(), - "doytest".to_string(), - ], - ) - ); + let mut client = irc::ClientBuilder::new("doytest", "chat.freenode.net").connect(); loop { let res = client.read(); -- cgit v1.2.3