blob: 53e9d6a9c91f3f4daa80cbea2230934346ab0b92 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
use htmpl;
use io;
use net::http;
use net::uri;
use strings;
export fn handlereq(conn: io::handle, request: *http::request) (void | io::error | nomem | uri::invalid) = {
htmpl::write(conn, "HTTP/1.1 200 OK\r\n")?;
htmpl::write(conn, "Content-Type: text/html\r\n\r\n")?;
let segments = segments_from_path(request.target.raw_path)?;
defer strings::freeall(segments);
tp_index(conn, segments)?;
};
|