Skip to content

Tags: softempire/cpp-httplib

Tags

v0.5.7

Toggle v0.5.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix exception that occurs with libc++ regex engine (yhirose#368)

The regex that parses header lines potentially causes an unlimited
amount of backtracking, which can cause an exception in the libc++ regex
engine.

The exception that occurs looks like this and is identical to the
message of the exception fixed in
yhirose#280:

	libc++abi.dylib: terminating with uncaught exception of type
	std::__1::regex_error: The complexity of an attempted match
	against a regular expression exceeded a pre-set level.

This commit eliminates the problematic backtracking.

v0.5.6

Toggle v0.5.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support for deflate compression (yhirose#360)

v0.5.5

Toggle v0.5.5's commit message
Update README

v0.5.4

Toggle v0.5.4's commit message

v0.5.3

Toggle v0.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Added a contributor to README

v0.5.2

Toggle v0.5.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Updated README

v0.5.1

Toggle v0.5.1's commit message
Updated README

v0.5.0

Toggle v0.5.0's commit message
V0.5.0

v0.4.2

Toggle v0.4.2's commit message
Code cleanup

v0.4.1

Toggle v0.4.1's commit message
Fix yhirose#289: Fixed build problem with Visual C++