diff options
author | nocomer <nocomer@yandex-team.ru> | 2022-02-10 16:51:48 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:51:48 +0300 |
commit | 98445ce16e046ec9528200234bd53fcf7f9aa61b (patch) | |
tree | 4f780439b0f3f7ed13e6914fccf3434f047e761e /util/network/socket.h | |
parent | 1dbd640faa41bcc5e0706aa58be73600774045eb (diff) | |
download | ydb-98445ce16e046ec9528200234bd53fcf7f9aa61b.tar.gz |
Restoring authorship annotation for <nocomer@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/network/socket.h')
-rw-r--r-- | util/network/socket.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/util/network/socket.h b/util/network/socket.h index 40c8648b40..4588f0bd1d 100644 --- a/util/network/socket.h +++ b/util/network/socket.h @@ -119,19 +119,19 @@ int GetSocketToS(SOCKET s, const NAddr::IRemoteAddr* addr); void SetSocketPriority(SOCKET s, int priority); void SetTcpFastOpen(SOCKET s, int qlen); /** - * Deprecated, consider using HasSocketDataToRead instead. + * Deprecated, consider using HasSocketDataToRead instead. **/ bool IsNotSocketClosedByOtherSide(SOCKET s); -enum class ESocketReadStatus { - HasData, - NoData, - SocketClosed -}; -/** - * Useful for keep-alive connections. - **/ -ESocketReadStatus HasSocketDataToRead(SOCKET s); +enum class ESocketReadStatus { + HasData, + NoData, + SocketClosed +}; /** + * Useful for keep-alive connections. + **/ +ESocketReadStatus HasSocketDataToRead(SOCKET s); +/** * Determines whether connection on socket is local (same machine) or not. **/ bool HasLocalAddress(SOCKET socket); |