Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6473 → Rev 6474

/kernel/trunk/network/tcp_output.inc
1,6 → 1,6
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Copyright (C) KolibriOS team 2004-2015. All rights reserved. ;;
;; Copyright (C) KolibriOS team 2004-2016. All rights reserved. ;;
;; Distributed under terms of the GNU General Public License ;;
;; ;;
;; Part of the TCP/IP network stack for KolibriOS ;;
30,6 → 30,7
 
locals
temp_bits db ?
window dd ?
endl
 
DEBUGF DEBUG_NETWORK_VERBOSE, "TCP_output: socket=%x state=%u\n", eax, [eax + TCP_SOCKET.t_state]
471,6 → 472,7
@@:
 
DEBUGF DEBUG_NETWORK_VERBOSE, "TCP_send: window = %u\n", ebx
mov [window], ebx
 
mov cl, [eax + TCP_SOCKET.RCV_SCALE]
shr ebx, cl
629,6 → 631,8
inc [TCPS_sndtotal]
 
; update advertised receive window
 
mov ecx, [window]
test ecx, ecx
jz @f
add ecx, [eax + TCP_SOCKET.RCV_NXT]