Skip to content

Commit

Permalink
Fix set-no-delay.
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch committed Mar 14, 2024
1 parent aecd780 commit eebeb4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tcp.toit
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ class TcpTransport implements Transport:
supports-parallel-sessions -> bool: return true

write frame/Frame:
socket_.set-no-delay false
socket_.no-delay = false
framer.write frame writer_
socket_.set-no-delay true
socket_.no-delay = true

read -> Frame?:
return framer.read reader_
Expand Down

0 comments on commit eebeb4e

Please sign in to comment.