aboutsummaryrefslogtreecommitdiffstats
path: root/util/network/socket.cpp
diff options
context:
space:
mode:
authorspacelord <spacelord@yandex-team.ru>2022-02-10 16:48:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:15 +0300
commit16747e4f77455cca4932df21eb76f12cb0a97a5c (patch)
tree4dd6da4102d99d0d69dec53c1050d290a850a9f2 /util/network/socket.cpp
parenta817f5de12611ec73085eba17f8ec7740a46bdb7 (diff)
downloadydb-16747e4f77455cca4932df21eb76f12cb0a97a5c.tar.gz
Restoring authorship annotation for <spacelord@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/network/socket.cpp')
-rw-r--r--util/network/socket.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/network/socket.cpp b/util/network/socket.cpp
index 4f6e804346..d7963aef00 100644
--- a/util/network/socket.cpp
+++ b/util/network/socket.cpp
@@ -574,7 +574,7 @@ void TSocketHolder::Close() noexcept {
}
class TSocket::TImpl: public TAtomicRefCount<TImpl> {
- using TOps = TSocket::TOps;
+ using TOps = TSocket::TOps;
public:
inline TImpl(SOCKET fd, TOps* ops)
@@ -721,7 +721,7 @@ static inline ssize_t DoSendV(SOCKET fd, const struct iovec* iov, size_t count)
template <bool isCompat>
struct TSender {
- using TPart = TSocket::TPart;
+ using TPart = TSocket::TPart;
static inline ssize_t SendV(SOCKET fd, const TPart* parts, size_t count) {
return DoSendV(fd, (const iovec*)parts, count);
@@ -730,7 +730,7 @@ struct TSender {
template <>
struct TSender<false> {
- using TPart = TSocket::TPart;
+ using TPart = TSocket::TPart;
static inline ssize_t SendV(SOCKET fd, const TPart* parts, size_t count) {
TTempBuf tempbuf(sizeof(struct iovec) * count);
@@ -749,7 +749,7 @@ struct TSender<false> {
};
class TCommonSockOps: public TSocket::TOps {
- using TPart = TSocket::TPart;
+ using TPart = TSocket::TPart;
public:
inline TCommonSockOps() noexcept {