~zosrothko/poco/+git/kampbell:feature/reactor-http

Last commit made on 2017-11-21
Get this branch:
git clone -b feature/reactor-http https://git.launchpad.net/~zosrothko/poco/+git/kampbell

Branch merges

Branch information

Name:
feature/reactor-http
Repository:
lp:~zosrothko/poco/+git/kampbell

Recent commits

43e723d... by Alex Fabijanic <email address hidden>

Merge branch 'develop' into feature/reactor-http

c7c70c3... by Alex Fabijanic <email address hidden>

remove unneeded code

d962ffc... by Scott Talbert

Fix EVPTest on RHEL/Fedora by removing hard-coded EC curve name (#2002)

RHEL/Fedora seem to have a much more limited set of EC curves available by
default. This change will instead use the first curve name as used in other
places.

5c1e3b5... by =?utf-8?q?Marian_Krivo=C5=A1?= <email address hidden>

SharePtr fix for gcc 7.2 (#2004)

e101888... by Aleksandar Fabijanic <email address hidden>

Harden RecursiveDirectoryIterator when walking the filesystem. (#2001)

* In the implementation for the *Traverse strategies the next method performs an unguarded list directory. If the directory is not accessible an unrecoverable error is raised thus ruining the walk. This changeset adopts and adapts the error handling protocol as defined in Python's os.walk function where errors from listdir are ignored or are reported to an optional on error callback function.

* Expand DirectoryIteratorsTest testsuite to confirm the hardened iterator behaviour over unreadable directories.

* Expand DirectoryIteratorsTest testsuite to confirm the hardened iterator behaviour over
  unreadable directories. Correct bad formatting

* fix clang compile

efae4aa... by =?utf-8?q?G=C3=BCnter_Obiltschnig?= <email address hidden>

Merge pull request #1996 from swt2c/xmlstreamparser_unbundled_expat

Fix building XMLStreamParser with unbundled expat

1a62d5f... by Scott Talbert

Fix building XMLStreamParser with unbundled expat

af218a8... by =?utf-8?q?G=C3=BCnter_Obiltschnig?= <email address hidden>

added additional move constructor and assignment operators

e12458a... by =?utf-8?q?G=C3=BCnter_Obiltschnig?= <email address hidden>

implement Poco::SharedPtr using std::shared_ptr (#1993)

3ada2d9... by Philippe RG <email address hidden>

Add mechanism to start a task from within a task (#1287)

* Add mechanism to start a task from within a task

Staying in the same thread.

* Provide seeds for a task queue creation

TaskManager::taskFinished removes the finished task from the task list
before dispatching the taskFinished notification

* fixup! Add mechanism to start a task from within a task

* fixup! Add mechanism to start a task from within a task

* Add Task::yield

on the same model as Task::sleep