blob: 603ca5103af4fc42ef4c3df6fb1b436b72f8cb30 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
#pragma once
#include <util/datetime/base.h>
#include <library/cpp/string_utils/url/url.h>
class TSimpleHttpClientOptions {
using TSelf = TSimpleHttpClientOptions;
public:
TSimpleHttpClientOptions() = default;
explicit TSimpleHttpClientOptions(TStringBuf url) {
TStringBuf scheme, host;
GetSchemeHostAndPort(url, scheme, host, Port_);
Host_ = url.Head(scheme.size() + host.size());
}
TSelf& Host(TStringBuf host) {
Host_ = host;
return *this;
}
const TString& Host() const noexcept {
return Host_;
}
TSelf& Port(ui16 port) {
Port_ = port;
return *this;
}
ui16 Port() const noexcept {
return Port_;
}
TSelf& SocketTimeout(TDuration timeout) {
SocketTimeout_ = timeout;
return *this;
}
TDuration SocketTimeout() const noexcept {
return SocketTimeout_;
}
TSelf& ConnectTimeout(TDuration timeout) {
ConnectTimeout_ = timeout;
return *this;
}
TDuration ConnectTimeout() const noexcept {
return ConnectTimeout_;
}
TSelf& MaxRedirectCount(int count) {
MaxRedirectCount_ = count;
return *this;
}
ui16 MaxRedirectCount() const noexcept {
return MaxRedirectCount_;
}
private:
TString Host_;
ui16 Port_;
TDuration SocketTimeout_ = TDuration::Seconds(5);
TDuration ConnectTimeout_ = TDuration::Seconds(30);
int MaxRedirectCount_ = INT_MAX;
};
|