aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed sign comparisson warningAntony Woods2014-09-231-1/+1
|
* Merge branch 'master' of github.com:acron0/crow into url-params-in-reqAntony Woods2014-09-231-23/+33
|\
| * fix bug in keep-alive header handlingipkn2014-09-191-28/+33
| |
| * support HTTP/1.0 keep alive (add corresponding header to response)ipknHama2014-09-201-0/+5
| |
* | URL params are now present as a ci_map variable of requestAntony Woods2014-09-223-4/+82
|/
* Merge pull request #24 from acron0/url-paramsipkn2014-09-191-25/+28
|\ | | | | Culling url params
| * Culling url paramsAntony Woods2014-09-151-25/+28
|/
* fix example_chat crash bug when using (req, res) handleripknHama2014-09-142-4/+33
|
* add pragma once to settings.h, set log level to DEBUG for unittestipknHama2014-09-142-0/+4
|
* update amalgamateipknHama2014-09-141-5/+14
|
* added test case for handling repeated request wrongipknHama2014-09-141-0/+38
|
* Merge pull request #23 from acron0/response-completed-bugipkn2014-09-141-1/+2
|\ | | | | Fixed a bug in which response objects believed they were completed when they weren't.
| * Moved the 'completed = true' line to before the completion callbacksAntony Woods2014-09-131-1/+2
| |
* | Merge pull request #22 from acron0/travis-logo-in-readmeipkn2014-09-141-0/+2
|\ \ | |/ |/| Added travis build status logo to README
| * Added travis logoAntony2014-09-131-0/+2
|/
* remove clang from travisipknHama2014-09-121-2/+2
|
* travis update boost-latest, CMakeLists.txt boost version updateipknHama2014-09-122-2/+3
|
* travis add-repositoryipknHama2014-09-121-0/+3
|
* travis configuration update: g++-4.8, cmake checkipknHama2014-09-121-0/+4
|
* change libboost-dev to libboost-all-devipknHama2014-09-121-1/+1
|
* travis add boost installipknHama2014-09-121-0/+1
|
* travis CI build configuration fileipknHama2014-09-121-0/+12
|
* change default log level to INFOipknHama2014-09-121-1/+3
|
* fix compile erroripknHama2014-09-124-93/+108
| | | | | | - add consturctor to request - remove unused type using - include "logging.h" from dumb_timer_queue.h (who uses CROW_LOG_DEBUG)
* Update README.mdipkn2014-09-111-2/+2
|
* Implement example CookieParser middleware and testipknHama2014-09-118-578/+1169
|
* complete middleware implementationipknHama2014-09-086-92/+673
|
* basic middleware test: before_handleripknHama2014-09-078-25/+174
|
* 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
|