From 898c4e531cb34e715cb75ab8803a39c461813f9f Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sat, 22 Apr 2017 17:16:35 -0500 Subject: [PATCH] Don't call TCPIPCloseTCP before calling TCPIPAbortTCP. This isn't really necessary, and it sometimes seems to put Marinetti in a state where subsequent connections fail. --- tcpconnection.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tcpconnection.c b/tcpconnection.c index 91c7793..cf307ae 100644 --- a/tcpconnection.c +++ b/tcpconnection.c @@ -61,7 +61,6 @@ Word StartTCPConnection(Session *sess) { void EndTCPConnection(Session *sess) { if (sess->tcpLoggedIn) { - TCPIPCloseTCP(sess->ipid); TCPIPPoll(); TCPIPAbortTCP(sess->ipid); TCPIPLogout(sess->ipid);