Fixed end_of_input by using SOCKET.readable.

This commit is contained in:
2015-12-28 23:45:04 +01:00
parent fbe0732210
commit 166d0839b7

View File

@@ -85,7 +85,7 @@ feature -- Status report
end_of_input: BOOLEAN end_of_input: BOOLEAN
-- Has the end of input stream been reached? -- Has the end of input stream been reached?
do do
Result := not source.try_ready_for_reading Result := not source.readable
end end
;note ;note