Skip to content

Commit b3da92c

Browse files
committed
curl library has been updated to version 8.7.1#3
1 parent 080feb6 commit b3da92c

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -513,29 +513,29 @@ send return the class itself, so they can be added one after the other like a ch
513513
> All methods and parameters descriptions are also available within the code as comment for IDEs.
514514
515515
```cpp
516-
- HttpRequest& setMethod(const HttpMethod& method) noexcept
516+
HttpRequest& setMethod(const HttpMethod& method) noexcept;
517517

518-
- HttpRequest& setQueryString(const std::string& queryString) noexcept
518+
HttpRequest& setQueryString(const std::string& queryString) noexcept;
519519

520-
- HttpRequest& setPayload(const std::string& payload) noexcept
520+
HttpRequest& setPayload(const std::string& payload) noexcept;
521521

522-
- HttpRequest& returnAsBinary() noexcept
522+
HttpRequest& returnAsBinary() noexcept;
523523

524-
- HttpRequest& addHeader(const std::string& key, const std::string& value) noexcept
524+
HttpRequest& addHeader(const std::string& key, const std::string& value) noexcept;
525525

526-
- HttpRequest& setTimeout(const int timeout) noexcept
526+
HttpRequest& setTimeout(const int timeout) noexcept;
527527

528-
- HttpRequest& ignoreSslErrors() noexcept
528+
HttpRequest& ignoreSslErrors() noexcept;
529529

530-
- HttpRequest& setTLSVersion(const TLSVersion version) noexcept
530+
HttpRequest& setTLSVersion(const TLSVersion version) noexcept;
531531

532-
- HttpRequest& setUserAgent(const std::string& userAgent) noexcept
532+
HttpRequest& setUserAgent(const std::string& userAgent) noexcept;
533533

534-
- HttpRequest& setDownloadBandwidthLimit(const int limit) noexcept
534+
HttpRequest& setDownloadBandwidthLimit(const int limit) noexcept;
535535

536-
- HttpRequest& setUploadBandwidthLimit(const int limit) noexcept
536+
HttpRequest& setUploadBandwidthLimit(const int limit) noexcept;
537537

538-
- std::future<HttpResult> send() noexcept
538+
std::future<HttpResult> send() noexcept;
539539
```
540540
541541

0 commit comments

Comments
 (0)