From 3b8dab23f0fc054a016a65ee39f37b13d0c0da67 Mon Sep 17 00:00:00 2001 From: follower Date: Fri, 7 Dec 2007 12:58:24 +0000 Subject: [PATCH] Apply xSmurf's fix for the order of socket close/disconnect. With this fix Safari isn't left hanging, but the response isn't displayed 100% correct due to another bug--a fix for that comes up next. git-svn-id: svn+ssh://oldsvn/home/mlalondesvn/svn/cral@73 3ee9b42a-b53c-0410-a25e-f0b6218d5d5b --- branches/follower/wiz810mj/src/demo/WizDemo2/WizDemo2.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/branches/follower/wiz810mj/src/demo/WizDemo2/WizDemo2.pde b/branches/follower/wiz810mj/src/demo/WizDemo2/WizDemo2.pde index 05340c2..a2e234c 100644 --- a/branches/follower/wiz810mj/src/demo/WizDemo2/WizDemo2.pde +++ b/branches/follower/wiz810mj/src/demo/WizDemo2/WizDemo2.pde @@ -317,8 +317,8 @@ void loop() { break; } - disconnect(testSocket); close(testSocket); + disconnect(testSocket); Serial.println("End test W5100 socket...");