realitix / apache2-rs

Apache module development with Rust [early development]

Home Page:https://www.polydraw.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Apache module development with Rust

This library is intended to make possible and easy writing Apache HTTP Server modules using the Rust programming language.

NOTE: The library is still in early development phase – extensive documentation will be provided soon after the basic features are implemented

Here is a small example of what an Apache Rust module code looks like:

#![feature(plugin)]
#![plugin(interpolate_idents)]

#[macro_use]
extern crate apache2;

use apache2::{Request, Status};

apache2_module!(hello, b"mod_hello\0");


fn hello_handler(r: &mut Request) -> Result<Status, ()> {
   r.set_content_type("text/plain; charset=utf-8");

   try!(r.write("Hello Ciao Здравейте"));

   Ok(Status::OK)
}

About

Apache module development with Rust [early development]

https://www.polydraw.com

License:Apache License 2.0


Languages

Language:Rust 100.0%