diff options
author | svshevtsov <svshevtsov@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:37 +0300 |
commit | de89752358147d7b25ef59a85b431bb564068a49 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /util/network/sock.h | |
parent | 657337012a264721d58c470b4e9e796611f3c492 (diff) | |
download | ydb-de89752358147d7b25ef59a85b431bb564068a49.tar.gz |
Restoring authorship annotation for <svshevtsov@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/network/sock.h')
-rw-r--r-- | util/network/sock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/network/sock.h b/util/network/sock.h index ec8d146287..b10be2f715 100644 --- a/util/network/sock.h +++ b/util/network/sock.h @@ -326,7 +326,7 @@ struct TSockAddrInet6: public sockaddr_in6, public ISockAddr { TString GetIp() const noexcept { char ip6[INET6_ADDRSTRLEN]; - inet_ntop(AF_INET6, (void*)&sin6_addr, ip6, INET6_ADDRSTRLEN); + inet_ntop(AF_INET6, (void*)&sin6_addr, ip6, INET6_ADDRSTRLEN); return TString(ip6); } |