Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3269 → Rev 3270

/kernel/branches/net/network/tcp_input.inc
639,7 → 639,7
mov eax, ebx
call TCP_close
;;;TODO: update stats
jmp .drop_with_reset
jmp .drop_with_reset_no_socket
 
;----------------------------------------
; Remove data beyond right edge of window (700-736)
770,7 → 770,7
;;; TODO: update stats (tcp drops)
mov eax, ebx
call TCP_close
jmp .drop
jmp .drop_no_socket
 
.rst_close:
DEBUGF 1,"TCP_input: Closing with reset\n"
777,7 → 777,7
 
mov eax, ebx
call TCP_close
jmp .drop
jmp .drop_no_socket
 
.no_rst:
 
1596,13 → 1596,12
ret
 
.drop_with_reset_no_socket:
 
DEBUGF 1,"TCP_input: Drop with reset (no socket)\n"
 
test [edx + TCP_header.Flags], TH_RST
jnz .drop_no_socket
 
;;; if its a multicast/broadcast, also drop
;;; TODO: if its a multicast/broadcast, also drop
 
test [edx + TCP_header.Flags], TH_ACK
jnz .respond_seg_ack