14 releases
new 0.2.3 | Nov 22, 2024 |
---|---|
0.2.2 | Nov 17, 2024 |
0.2.0 | Oct 9, 2024 |
0.1.9 | Sep 21, 2024 |
0.1.6 | Jul 28, 2024 |
#299 in HTTP server
219 downloads per month
27KB
457 lines
Supported Protocols
Usage examples:
- See rest Example.
Cargo.toml:
[dependencies]
rust_tcp_sever = "0.2.3"
src/main.rs:
use rust_tcp_sever::*;
fn main() {
Server::http_launch(TcpListener::bind("127.0.0.1:80").unwrap(), 4);
}
struct Server;
impl HttpControl for Server {
#[inline]
fn check_stream(stream: &TcpStream) -> bool { true }
#[inline]
fn parser_request(_stream: &TcpStream, request: &Request, response: &mut Response) {
println!("{request:#?}");
println!("\n\n\n\n");
println!("{response:#?}");
}
}
Future of the Library
The library will be updated as new proposals and ideas are received. I will try to post a new update every month.
Dependencies
~47KB