Yes. In a raw-mode server connection, the
Data transfer settings give you a Send data to dropdown, and one of its options is
Last active — data is sent only to the client that responded last. That's exactly the "reply only to the last connection that wrote" behavior; you're not stuck broadcasting the device's output to every client. There's a matching Receive data from dropdown with the same choices (None, Only first / Only last, Last active, All), so you can control the inbound side too.
The default for both is
All — every client receives the device's output — which is the right setting for a device that simply streams to many readers. When you have a request/response device shared among several clients and want each answer to return only to the requester, switch Send data to to
Last active. Two things to keep in mind: this is a raw-mode feature (in Telnet/RFC 2217 the connection is one-to-one anyway), and if several clients can write in quick succession, coordinate them at the application level so "last active" resolves to the client you actually mean.
Answered by Bohdan Miniv · QA Engineering
What customers say