diff options
author | spacelord <[email protected]> | 2022-02-10 16:48:15 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:15 +0300 |
commit | a0c6d9ad0cf6b94c527a15da147eb24335281b6d (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /util/network/socket.cpp | |
parent | 16747e4f77455cca4932df21eb76f12cb0a97a5c (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/network/socket.cpp')
-rw-r--r-- | util/network/socket.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/network/socket.cpp b/util/network/socket.cpp index d7963aef00f..4f6e8043462 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 { |