Fixed bug with TCP_close

git-svn-id: svn://kolibrios.org@2882 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr
2012-07-19 13:17:11 +00:00
parent 7fa293ff87
commit a105ce8fd8
4 changed files with 8 additions and 11 deletions

View File

@@ -815,7 +815,7 @@ align 4
test [edx + TCP_header.Flags], TH_RST
jz .rst_skip
DEBUGF 1,"Got an RST flag"
DEBUGF 1,"Got an RST flag\n"
mov eax, [ebx + TCP_SOCKET.t_state]
shl eax, 2
@@ -835,21 +835,21 @@ align 4
dd .rst_close ;TCPS_TIMED_WAIT
.econnrefused:
DEBUGF 1,"Connection refused"
DEBUGF 1,"Connection refused\n"
mov [ebx + SOCKET.errorcode], ECONNREFUSED
jmp .close
.econnreset:
DEBUGF 1,"Connection reset"
DEBUGF 1,"Connection reset\n"
mov [ebx + SOCKET.errorcode], ECONNRESET
.close:
DEBUGF 1,"Closing connection"
.close:
DEBUGF 1,"Closing connection\n"
mov [ebx + TCP_SOCKET.t_state], TCPS_CLOSED
;;; TODO: update stats
;;; TODO: update stats (tcp drops)
mov eax, ebx
call TCP_close
jmp .drop
@@ -1200,7 +1200,7 @@ align 4
mov eax, ebx
call TCP_close
call TCP_disconnect
jmp .drop