aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* add Middlewares template to Crow main class, context implementationipknHama2014-09-078-10/+184
|
* improve performance by 2xipkn2014-08-174-27/+58
| | | | change to io_service per CPU model
* fixed multithread crashipkn2014-08-162-25/+42
|
* fix compile bug (feeding std::endl to logger)ipknHama2014-08-161-1/+1
|
* Change to custom timer implementation to increase performanceipknHama2014-08-164-20/+110
|
* remove shared_ptr for performanceipknHama2014-08-153-29/+48
|
* Don't create logger object if corresponding log level is ignored.ipknHama2014-08-151-7/+15
|
* remove -pg compile flag (commited by mistake)ipknHama2014-08-151-2/+2
|
* tcmalloc linking addedipkn2014-08-143-0/+48
|
* Fixes #14, long polling leak removed.ipknHama2014-08-112-78/+79
|
* Update README.mdipkn2014-08-081-13/+28
|
* Merge branch 'directory-restructuring'ipknHama2014-08-0849-220/+9647
|\ | | | | | | | | | | Directory structure changed. Crow becomes a complete header-only library with http_parser_merged.h. Provides amalgamated crow_all.h (all feature in one header file).
| * amalgamation addedipknHama2014-08-088-114/+6774
| |
| * now crow becomes completely header onlyipknHama2014-08-079-27/+2658
| |
| * decide to be header onlyipknHama2014-08-073-385/+340
| |
| * improve mustache.hipknHama2014-08-072-15/+23
| |
| * spliting header implementation into cpp files, routing.cpp createdipknHama2014-08-075-357/+399
| |
| * cmake update, added template testipknHama2014-08-079-32/+68
| |
| * source resturcturing + CMakeipknHama2014-08-0743-56/+151
|/
* long polling implementation completeipknHama2014-08-0610-81/+304
| | | | | | change `res handle(req)' into `void handle(req, res)' connnection::handle is divide into two part: before and after user handler
* add supporing handlers with res parameteripknHama2014-08-065-13/+88
| | | | | | | | | | void handler(const crow::request&, crow::response& res) { res.send(data) res.end() } https://news.ycombinator.com/item?id=8004017
* Update README.mdipkn2014-08-041-7/+19
|
* mustache partial implementationipknHama2014-08-025-13/+107
|
* implementing mustache specs except partial and lambdasipknHama2014-08-024-154/+429
|
* replace lexical_cast to std::to_stringipknHama2014-08-021-3/+1
|
* begin implementation: mustache based template engineipknHama2014-08-0222-3/+1618
|
* Mac gcov error fix (remove -r option)Jaeseung Ha2014-07-291-1/+2
|
* Merge pull request #11 from c0untd0wn/masteripkn2014-07-292-7/+23
|\ | | | | support for Mac OS X
| * support for Mac OSXBeomki Lee2014-07-272-7/+23
| |
* | Add HTTP/1.1 persistent connection timeoutipknHama2014-07-295-34/+91
|/ | | | manage Connection object life cycle using shared_ptr
* Merge pull request #6 from deralex/readme-enhancementsipkn2014-07-091-1/+6
|\ | | | | Added git submodule to the readme
| * Added git submodule to the readmeAlexander Kluth2014-07-091-1/+6
|/ | | | Signed-off-by: Alexander Kluth <kluth@freshcells.de>
* add support for "Expect: 100-continue"ipknHama2014-07-093-4/+27
|
* fix old naming, check for host headeripknHama2014-07-094-6/+14
|
* Merge pull request #4 from dZkF9RWJT6wN8ux/masteripkn2014-07-0910-17/+33
|\ | | | | Some fixes
| * Ignore .directory fileAlex Butum2014-07-081-0/+2
| |
| * use 'template' keyword to treat 'operator ()' as a dependent template name ↵Alex Butum2014-07-081-1/+1
| | | | | | | | in TaggedRule class
| * Added build-essential package to Ubuntu requirementsAlex Butum2014-07-081-1/+1
| |
| * Use the ${CXX} environment variable instead of hard coding the compilerAlex Butum2014-07-081-3/+3
| |
| * Use -std=c++1y flag to workaround initialized lambda captures are a C++1y ↵Alex Butum2014-07-081-3/+3
| | | | | | | | extension warning
| * Added clean pseudo target to MakefileAlex Butum2014-07-081-0/+6
| |
| * Added build instructions for Ubuntu in README.mdAlex Butum2014-07-081-5/+8
| |
| * Use C++ cstdint header in http_server.hAlex Butum2014-07-081-1/+2
| |
| * Use C++ cstdint header in crow.hAlex Butum2014-07-081-1/+2
| |
| * Use C++ cstdint header in utility.hAlex Butum2014-07-081-1/+1
| |
| * Fixed compilation error - CROW_LOG_DEBUG not declared in this scopeAlex Butum2014-07-081-0/+1
| |
| * Use C++ style header includeAlex Butum2014-07-081-3/+3
| |
| * Include settings for logging macros to be visibleAlex Butum2014-07-081-0/+2
| |
| * Init life_ data member from Connection classAlex Butum2014-07-081-1/+1
| |
| * Init d data member from wvalue classAlex Butum2014-07-081-1/+1
|/