Skip to content

Commit

Permalink
Remove explicit namespace qualification.
Browse files Browse the repository at this point in the history
  • Loading branch information
levlam committed Mar 31, 2024
1 parent a65e820 commit d7203eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdutils/td/utils/port/UdpSocketFd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ const NativeFd &UdpSocketFd::get_native_fd() const {
return get_poll_info().native_fd();
}

static Result<uint32> maximize_buffer(const td::NativeFd &fd, int optname, uint32 max_size) {
static Result<uint32> maximize_buffer(const NativeFd &fd, int optname, uint32 max_size) {
if (setsockopt(fd.socket(), SOL_SOCKET, optname, reinterpret_cast<const char *>(&max_size), sizeof(max_size)) == 0) {
// fast path
return max_size;
Expand Down

0 comments on commit d7203eb

Please sign in to comment.