Commit bdba2b56 authored by Chris's avatar Chris
Browse files

[multi-threaded-web-server] patched case where http request can't be unwrapped

parent 0a927829
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Hello!</title>
</head>
<body>
<h1>Oops!</h1>
<p>Sorry, I don't know what you're asking for.</p>
</body>
</html>
+7 −0
Original line number Diff line number Diff line
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4

[[package]]
name = "multi-threaded-web-server"
version = "0.1.0"
+6 −0
Original line number Diff line number Diff line
[package]
name = "multi-threaded-web-server"
version = "0.1.0"
edition = "2024"

[dependencies]
+11 −0
Original line number Diff line number Diff line
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>Hello!</title>
</head>
<body>
<h1>Hello!</h1>
<p>Hi from Rust</p>
</body>
</html>
+2 −0
Original line number Diff line number Diff line

pub struct ThreadPool;
Loading