Crates.io | net-utils |
lib.rs | net-utils |
version | 0.0.5 |
source | src |
created_at | 2015-12-24 03:55:05.84963 |
updated_at | 2018-01-01 04:36:53.718436 |
description | Network utility library which provides client connection pool for TCP/SSL connctions |
homepage | |
repository | https://github.com/rohitjoshi/net-utils |
max_upload_size | |
id | 3736 |
size | 41,158 |
Provides networking utility including TCP/SSL connection and connection manager.
Here is an example of using connection pool.
Define the below dependency in Cargo.toml
[dependencies.net-utils]
git = "https://github.com/rohitjoshi/net-utils.git"
Here is your main.rs
extern crate "net-utils" as utils;
use std::default::Default;
use std::sync::{ Arc, Mutex };
use utils::net::config;
use utils::net::poolmgr;
fn main() {
let mut cfg : config::Config = Default::default();
//set port to 80
cfg.port= Some(80);
//set host to
cfg.server = Some("google.com".to_string());
let mut pool = poolmgr::ConnectionPool::new(2, 20, true, &cfg);
//get the connection
let mut conn = pool.aquire().unwrap();
conn.writer.write_str("GET google.com\r\n").unwrap();
conn.writer.flush().unwrap();
let r = conn.reader.read_line();
println!("Received {}", r);
pool.release(conn);
}
Here is above example used in multi-threded environment
extern crate "net-utils" as utils;
use std::default::Default;
use std::sync::{ Arc, Mutex };
use utils::net::config;
use utils::net::poolmgr;
fn main() {
let mut cfg : config::Config = Default::default();
//set port to 80
cfg.port= Some(80);
//set host to
cfg.server = Some("google.com".to_string());
let mut pool = poolmgr::ConnectionPool::new(2, 20, true, &cfg);
let pool = Arc::new(Mutex::new(pool));
for _ in range(0u, 2) {
let pool = pool.clone();
spawn(move || {
let mut conn = pool.lock().aquire().unwrap();
conn.writer.write_str("GET google.com\r\n").unwrap();
conn.writer.flush().unwrap();
let r = conn.reader.read_line();
println!("Received {}", r);
pool.lock().release(conn);
});
}
}
To enable SSL connectivity, compile using --feature ssl e.g. For executing SSL test cases, run cargo test --features ssl
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.