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

Commit 53e5b242 authored by Kenny Root's avatar Kenny Root Committed by Android Git Automerger
Browse files

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

# By Ray Donnelly
# Via Android Git Automerger (2) and others
* commit '6c3d3ccf':
  Windows adb: initialize on to 1 in disable_tcp_nagle
parents b94fd1ab 6c3d3ccf
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;