diff options
Diffstat (limited to 'library/cpp/neh/http_common.h')
-rw-r--r-- | library/cpp/neh/http_common.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/library/cpp/neh/http_common.h b/library/cpp/neh/http_common.h index a96f10a200..d19d1e4522 100644 --- a/library/cpp/neh/http_common.h +++ b/library/cpp/neh/http_common.h @@ -155,7 +155,6 @@ namespace NNeh { struct TRequestSettings { bool NoDelay = true; EResolverType ResolverType = EResolverType::ETCP; - bool UseAsyncSendRequest = false; TRequestSettings& SetNoDelay(bool noDelay) { NoDelay = noDelay; @@ -166,11 +165,6 @@ namespace NNeh { ResolverType = resolverType; return *this; } - - TRequestSettings& SetUseAsyncSendRequest(bool useAsyncSendRequest) { - UseAsyncSendRequest = useAsyncSendRequest; - return *this; - } }; struct TRequestGet { |