#tcp-server #request-response #tcp #web #response-status #rust-server #rust-tcp-server

bin+lib rust_tcp_sever

一个简单轻量级的crate,用于启动和使用服务器

9个版本

使用旧的Rust 2015

0.1.8 2024年8月17日
0.1.7 2024年8月11日
0.1.6 2024年7月28日

#196 in HTTP服务器

Download history • Rust 包仓库 434/week @ 2024-07-18 • Rust 包仓库 172/week @ 2024-07-25 • Rust 包仓库 19/week @ 2024-08-01 • Rust 包仓库 94/week @ 2024-08-08 • Rust 包仓库 179/week @ 2024-08-15 • Rust 包仓库

每月520次下载

自定义许可证

450KB
446

包含 (DOS可执行文件, 195KB) tests/loads_server.exe

Rust TcpSever

一个简单轻量级的crate,用于启动和使用服务器。

选择Rust-TcpSever的原因


  • 不使用第三方
  • 易于使用!
  • 小型库尺寸!
  • 支持所有类型的文件!

与开发者联系。

库的未来

收到新的建议和想法后,将更新库。如果我不想再开发这个项目,我会写关于它的东西。

使用示例

// src/main.rs
extern crate rust_tcp_sever;
pub use rust_tcp_sever::*;

fn main() {
   // Set Type Http, not necessary.
   TcpServer::set_http("HTTP/2.0");
   // Set Page Code Map, preferably)
   TcpServer::set_map_code_page(vec![
       (
           // Status Code.
           String::from("404 NOT FOUND"),
           // Your Response for this Status Code.
           Response::new_from_file("examples_rs/defpage.html", "text/html"),
       )
   ]);

   // Creating a Server.
   let server = TcpServer::new(Server::get_server("127.0.0.1:80"), ThreadPool::new(4));
   // Running a server on multiple ports (in this case 443).
   Server::launch_range_port(server, 443..444);
}

struct Server;

impl SeverControl for Server {
   #[inline]
   // Your Parsed Request.
   fn match_methods(request: &Request, response: &mut Response) {
       // Delet This Code Line)
       println!("{:#?}", request);

       match request.metod.as_str() {
          "GET" => Self::match_get(request, response),
          "POST" => Self::match_post(request, response),
          "PUT" => Self::match_put(request, response),
          _ => {}
       }

       // Delet This Code Line)
       println!("{:#?}", response);
   }

   #[inline]
   // Create Server, you can leave it like that.
   fn get_server<T: ToSocketAddrs>(ip_addr: T) -> TcpListener { TcpListener::bind(ip_addr).unwrap() }
}

impl Server {
   #[inline]
   fn match_get(request: &Request, response: &mut Response) {
       match request.url.as_str() {
           // Work) Make Html File, as echo() from PHP.
           "/qwe" => response.html(
               |resp| {
                   resp.echo(r#"<meta charset="utf-8">"#);
                   resp.echo(r#"<title>Cat Dark Net</title>"#);
               },
               |resp| {
                   resp.echo("<h1>123</h1>");
                   resp.echo("<h3>123</h3>");
                   resp.echo("<p>123</p>");
               },
           ),
           
           // Work Only Cookie( Just an example.
           "/response" => {
               response.set_file("examples_rs/webpage.html", "text/html");
               response.cookie.add("net", "qwe");
               response.cookie.delete("qwe");
           }

           // Don't Work( Just an example.
           "/giphy.webp" => response.set_file("examples_rs/giphy.webp", "image/webp"),
           "/image.png" => response.set_file("examples_rs/image.png", "image/png"),
           "/video.mp4" => response.set_file("examples_rs/video.mp4", "video/mp4"),
           "/audio.mp3" => response.set_file("examples_rs/audio.mp3", "audio/mp3"),
           "/favicon.ico" => response.set_file("examples_rs/image.png", "image/png"),

           // Work)
           "/wer" => response.set_redirect("/response"),
           // Work)
           "/sleep" => std::thread::sleep(std::time::Duration::from_secs(30)),
           _ => {}
       }
   }

   #[inline]
   fn match_post(_request: &Request, _response: &mut Response) {}
   #[inline]
   fn match_put(_request: &Request, _response: &mut Response) {}
}

作者支持

SWIFT转账

关于SWIFT转账的信息

  • 全名:Gakh Alexander Nikolaevich
  • SWIFT码银行:TICSRUMM
  • IBAN:RU9104452597440817810500116388926

许可证

本项目受专有许可证许可。

摘要

  • 下载库时,您自动同意许可证。
  • 您只能更改从GitHub下载的项目。
  • 您只能从GitHubcrates.io下载库。
  • 禁止将未经修改的副本转发给其他人。
  • 本软件的版权归作者所有。保留所有权利。
  • 作者不对造成的损害承担责任。

无运行时依赖