1
0
mirror of synced 2025-06-10 20:21:41 +03:00
Commit Graph

239 Commits

Author SHA1 Message Date
ae54e833ea Code cleanup 2020-07-31 23:48:42 -04:00
a5b4cfadb9 Brotli suport on server. Fix #578 2020-07-31 10:23:57 -04:00
3e906a9b8c Fix #591 2020-07-30 18:26:18 -04:00
ef65f09608 OpenSSL support on Visual Studio project 2020-07-30 17:19:12 -04:00
8a348f17fd Resolved #192 2020-07-30 01:47:54 -04:00
797d1f27e8 Fix #357 2020-07-29 23:12:05 -04:00
12540fe8d3 Brotli support on client 2020-07-25 20:44:02 -04:00
9ca1fa8b18 Fix #576 2020-07-25 09:37:57 -04:00
15c4106a36 Added a unit test 2020-07-22 08:07:59 -04:00
b476b55771 Fix #557 2020-07-20 17:04:50 -04:00
c4f3f9529b Fix #534 (#546) 2020-07-02 21:57:50 -04:00
ce502a73e1 Fix #531 2020-06-22 14:56:18 -04:00
010e4479f4 Fixed test errors due to httpbin.org 2020-06-22 14:53:20 -04:00
7cd25fbd63 Fix #499 2020-06-16 17:46:23 -04:00
0cc108d45e Updated ClientStop test 2020-06-13 23:18:59 -04:00
e022b8b80b Refactoring to make it ready for KeepAlive connection on Client 2020-06-13 21:42:23 -04:00
34282c79a9 Changd thread count in ClientStop 2020-06-13 01:45:08 -04:00
f80b6bd980 Added Endpoint structure in Client 2020-06-13 01:26:57 -04:00
5af7222217 Fixed Client::stop problem with more than one requests on threads 2020-06-12 11:04:37 -04:00
24bdb736f0 Fix #506 2020-06-09 19:58:01 -04:00
3eaa769a2d Fix #481, #483, #487 2020-05-26 18:34:32 -04:00
630f3465a9 Deprecated set_timeout_sec, added set_connection_timeout. 2020-05-23 18:00:24 -04:00
29fd136afd Code cleanup and format 2020-05-16 17:35:04 -04:00
f5598237b2 Fixed many redirects problem on Proxy 2020-05-16 17:34:03 -04:00
01058659ab make write timeout configurable (like the read timeout already is) (#477)
In case we want to send a lot of data,
and the receiver is slower than the sender.

This will first fill up the receivers queues and after this
eventually also the senders queues,
until the socket is temporarily unable to accept more data to send.

select_write is done with an timeout of zero,
which makes the select call used always return immediately:
(see http://man7.org/linux/man-pages/man2/select.2.html)

This means that every marginal unavailability will make it return false
for is_writable and therefore httplib will immediately abort the transfer.

Therefore make this values configurable in the same way
as the read timeout already is.

Set the default write timeout to 5 seconds,
the same default value used for the read timeout.
2020-05-16 17:31:46 -04:00
25aa3ca982 Added std::ostream os in DataSink. 2020-05-15 21:26:13 -04:00
2d67211183 Added more unit tests for the simple interface 2020-05-14 18:25:18 -04:00
63a96aeb20 Improved Client2 interface 2020-05-14 12:51:34 -04:00
2d4b42b70b Removed url 2020-05-14 01:43:06 -04:00
1919d08f71 Added Client2 2020-05-14 01:36:56 -04:00
2c0613f211 Fix #472 2020-05-13 21:48:14 -04:00
58909f5917 Fix #466 2020-05-10 15:58:53 -04:00
eb1fe5b191 Fixed warnings 2020-05-09 15:08:49 -04:00
5e01587ed6 Fixed problem created in the previous commit 2020-05-09 13:43:06 -04:00
5935d9fa59 Commented out the unit test for digest auth. 2020-05-09 13:32:51 -04:00
d043b18097 keepalive: support multiple post using content provider (#461) 2020-05-07 08:31:14 -04:00
cf386f97fd Merge branch 'master' of https://github.com/yhirose/cpp-httplib 2020-05-04 22:13:17 -04:00
b2203bb05a server: support dual-stack server socket (#450)
According to RFC 3493 the socket option IPV6_V6ONLY
should be off by default, see
https://tools.ietf.org/html/rfc3493#page-22 (chapter 5.3).

However this does not seem to be the case on all systems.
For instance on any Windows OS, the option is on by default.

Therefore clear this option in order to allow
an server socket which can support IPv6 and IPv4 at the same time.
2020-05-04 22:13:12 -04:00
f5b806d995 Added a test case for #396. 2020-05-04 21:26:14 -04:00
3895210f19 Code format 2020-05-04 21:25:59 -04:00
ed1b6afa10 Fix crash caused by header field regex complexity (#457) 2020-05-01 12:44:13 -04:00
08fc7085e5 Fixed #456 2020-04-30 19:40:23 -04:00
fae30af47d Updated appveyor.yml 2020-04-25 15:48:19 -04:00
a2e4af54b7 Fix #399 2020-04-23 23:09:04 -04:00
d0b123be26 Support remote_addr and remote_port REMOTE_PORT header in client Request (#433) 2020-04-23 22:12:12 -04:00
df138366e4 Fail to read a chunk if its length is >= ULONG_MAX (#444)
We cannot trivially support such large chunks, and the maximum value
std::strtoul can parse accurately is ULONG_MAX-1. Error out early if the
length is longer than that.
2020-04-23 10:59:15 -04:00
c49441ae64 Do not throw exceptions when parsing request chunks (#441)
detail::read_content_chunked was using std::stoul to parse the
hexadecimal chunk lengths for "Transfer-Encoding: chunked" requests.
This throws an exception if the string does not begin with any valid
digits. read_content_chunked is not called in the context of a try block
so this caused the process to terminate.

Rather than use exceptions, I opted for std::stroul, which is similar to
std::stoul but does not throw exceptions. Since malformed user input is
not particularly exceptional, and some projects are compiled without
exception support, this approach seems both more portable and more
correct.
2020-04-23 09:05:45 -04:00
e1506fa186 Code cleanup 2020-04-22 21:43:16 -04:00
ad9fd3bd93 Fix #436 2020-04-22 21:42:58 -04:00
05e0253195 Fixed test error 2020-04-21 23:07:51 -04:00