Quellcode durchsuchen

[tcp] Ensure FIN is actually sent if connection is closed while idle

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown vor 9 Jahren
Ursprung
Commit
9546b0c17b
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen
  1. 1
    0
      src/net/tcp.c

+ 1
- 0
src/net/tcp.c Datei anzeigen

@@ -400,6 +400,7 @@ static void tcp_close ( struct tcp_connection *tcp, int rc ) {
400 400
 
401 401
 		tcp->tcp_state |= TCP_STATE_SENT ( TCP_FIN );
402 402
 		tcp_dump_state ( tcp );
403
+		process_add ( &tcp->process );
403 404
 
404 405
 		/* Add a pending operation for the FIN */
405 406
 		pending_get ( &tcp->pending_flags );

Laden…
Abbrechen
Speichern