aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/dns
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:19 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:19 +0300
commitbd085aee9b4f7a0bee302ce687964ffb7098f986 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/dns
parent475c0a46f28166e83fd263badc7546377cddcabe (diff)
downloadydb-bd085aee9b4f7a0bee302ce687964ffb7098f986.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/dns')
-rw-r--r--library/cpp/dns/cache.cpp2
-rw-r--r--library/cpp/dns/thread.cpp8
2 files changed, 5 insertions, 5 deletions
diff --git a/library/cpp/dns/cache.cpp b/library/cpp/dns/cache.cpp
index d98d37cf8f..05c14e82fc 100644
--- a/library/cpp/dns/cache.cpp
+++ b/library/cpp/dns/cache.cpp
@@ -38,7 +38,7 @@ namespace {
struct THashResolveInfo {
inline size_t operator()(const TResolveInfo& ri) const {
- return ComputeHash(ri.Host) ^ ri.Port;
+ return ComputeHash(ri.Host) ^ ri.Port;
}
};
diff --git a/library/cpp/dns/thread.cpp b/library/cpp/dns/thread.cpp
index efec63831c..8b27d2d527 100644
--- a/library/cpp/dns/thread.cpp
+++ b/library/cpp/dns/thread.cpp
@@ -3,7 +3,7 @@
#include "magic.h"
#include <util/network/socket.h>
-#include <util/thread/factory.h>
+#include <util/thread/factory.h>
#include <util/thread/lfqueue.h>
#include <util/system/event.h>
#include <util/generic/vector.h>
@@ -12,7 +12,7 @@
using namespace NDns;
namespace {
- class TThreadedResolver: public IThreadFactory::IThreadAble, public TNonCopyable {
+ class TThreadedResolver: public IThreadFactory::IThreadAble, public TNonCopyable {
struct TResolveRequest {
inline TResolveRequest(const TString& host, ui16 port)
: Host(host)
@@ -61,7 +61,7 @@ namespace {
inline TThreadedResolver()
: E_(TSystemEvent::rAuto)
{
- T_.push_back(SystemThreadFactory()->Run(this));
+ T_.push_back(SystemThreadFactory()->Run(this));
}
inline ~TThreadedResolver() override {
@@ -121,7 +121,7 @@ namespace {
private:
TLockFreeQueue<TResolveRequest*> Q_;
TSystemEvent E_;
- typedef TAutoPtr<IThreadFactory::IThread> IThreadRef;
+ typedef TAutoPtr<IThreadFactory::IThread> IThreadRef;
TVector<IThreadRef> T_;
};
}