net/server_epoll.lua
changeset 9937 aac4c55721f9
parent 9859 6c2370f17027
parent 9936 df73ca804719
child 9999 8d46ecc4bd0c
--- a/net/server_epoll.lua	Tue Mar 26 17:22:56 2019 +0000
+++ b/net/server_epoll.lua	Thu Mar 28 17:28:20 2019 +0100
@@ -340,22 +340,25 @@
 		self:onconnect();
 		self:on("incoming", data);
 	else
+		if err == "wantread" then
+			self:set(true, nil);
+			err = "timeout";
+		elseif err == "wantwrite" then
+			self:set(nil, true);
+			err = "timeout";
+		end
 		if partial and partial ~= "" then
 			self:onconnect();
 			self:on("incoming", partial, err);
 		end
-		if err == "wantread" then
-			self:set(true, nil);
-		elseif err == "wantwrite" then
-			self:set(nil, true);
-		elseif err ~= "timeout" then
+		if err ~= "timeout" then
 			self:on("disconnect", err);
 			self:destroy()
 			return;
 		end
 	end
 	if not self.conn then return; end
-	if self.conn:dirty() then
+	if self._wantread and self.conn:dirty() then
 		self:setreadtimeout(false);
 		self:pausefor(cfg.read_retry_delay);
 	else