Mirror of cpp-httplib
Find a file
2012-09-26 21:36:32 -04:00
example Added SIGINT signal handler. 2012-09-26 11:55:14 -04:00
test Added google test framework. 2012-09-26 21:35:49 -04:00
.gitignore Updated .gitignore. 2012-09-26 21:36:32 -04:00
httpsvrkit.h Added google test framework. 2012-09-26 21:35:49 -04:00
README.md Added the hello world sample to README.md. 2012-09-25 22:21:42 -04:00

httpsvrkit

C++ HTTP sever library inspired by Sinatra

The Boost Software License 1.0

Example

#include <httpsvrkit.h>

int main(void) {
    HTTP_SERVER("localhost", 1234) {
        GET("/hi", {
            res.set_content("Hello World!");
        });
    }
}

Copyright (c) 2012 Yuji Hirose. All rights reserved.