Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 522 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 522 Bytes

mio_webserver

Non-Blocking I/O web server with rust/mio.

How to use

$ cargo run [addr]:[port]

then connect via telnet, nc or browser

sheep

Specification

  • Return responses as HTTP 1.0.
  • Accept only HTTP 1.0 or 1.1.
  • Only accept GET method.
  • Disconnect a connection when a request and the corresponding response are exchanged.
  • Security is not considered.(directory traversal etc.)