Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6c3d3ccf authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

am d033739d: am d40fd86e: Merge "Windows adb: initialize on to 1 in disable_tcp_nagle"

# By Ray Donnelly
# Via Android Git Automerger (1) and others
* commit 'd033739d':
  Windows adb: initialize on to 1 in disable_tcp_nagle
parents 76dd8e33 d033739d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -781,7 +781,7 @@ int adb_socket_accept(int serverfd, struct sockaddr* addr, socklen_t *addrle
void  disable_tcp_nagle(int fd)
{
    FH   fh = _fh_from_int(fd);
    int  on;
    int  on = 1;

    if ( !fh || fh->clazz != &_fh_socket_class )
        return;