aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/coroutine/dns/iface.h
diff options
context:
space:
mode:
authorqrort <qrort@yandex-team.com>2022-12-02 11:31:25 +0300
committerqrort <qrort@yandex-team.com>2022-12-02 11:31:25 +0300
commitb1f4ffc9c8abff3ba58dc1ec9a9f92d2f0de6806 (patch)
tree2a23209faf0fea5586a6d4b9cee60d1b318d29fe /library/cpp/coroutine/dns/iface.h
parent559174a9144de40d6bb3997ea4073c82289b4974 (diff)
downloadydb-b1f4ffc9c8abff3ba58dc1ec9a9f92d2f0de6806.tar.gz
remove kikimr/driver DEPENDS
Diffstat (limited to 'library/cpp/coroutine/dns/iface.h')
-rw-r--r--library/cpp/coroutine/dns/iface.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/library/cpp/coroutine/dns/iface.h b/library/cpp/coroutine/dns/iface.h
deleted file mode 100644
index 0310f48f8f..0000000000
--- a/library/cpp/coroutine/dns/iface.h
+++ /dev/null
@@ -1,75 +0,0 @@
-#pragma once
-
-#include <util/datetime/base.h>
-#include <util/generic/yexception.h>
-
-struct hostent;
-
-namespace NAsyncDns {
- struct TOptions {
- inline TOptions()
- : MaxRequests(Max())
- , Retries(5)
- , TimeOut(TDuration::MilliSeconds(50))
- {
- }
-
- inline TOptions& SetMaxRequests(size_t val) noexcept {
- MaxRequests = val;
-
- return *this;
- }
-
- inline TOptions& SetRetries(size_t val) noexcept {
- Retries = val;
-
- return *this;
- }
-
- inline TOptions& SetTimeOut(const TDuration& val) noexcept {
- TimeOut = val;
-
- return *this;
- }
-
- size_t MaxRequests;
- size_t Retries;
- TDuration TimeOut;
- };
-
- struct IHostResult {
- struct TResult {
- int Status;
- int Timeouts;
- const hostent* Result;
- };
-
- virtual ~IHostResult() = default;
-
- virtual void OnComplete(const TResult& result) = 0;
- };
-
- struct TNameRequest {
- inline TNameRequest(const char* addr, int family, IHostResult* cb)
- : Addr(addr)
- , Family(family)
- , CB(cb)
- {
- }
-
- inline TNameRequest Copy(IHostResult* cb) const noexcept {
- return TNameRequest(Addr, Family, cb);
- }
-
- inline TNameRequest Copy(int family) const noexcept {
- return TNameRequest(Addr, family, CB);
- }
-
- const char* Addr;
- int Family;
- IHostResult* CB;
- };
-
- struct TDnsError: public yexception {
- };
-}