Greetings. I'm trying to write a handler for the Arduino MySensors
library to handle the raw ethernet packets for TCP. There's 2 modes:
server and client. I have the protocol down pat, but the Node-red TCP
modules are confusing me.

The gist here is thus: Open up a TCP port on 5003, stream of string payloads delimited by "\n".
When data comes in via TCP-in of the appropriate type, format it for MQTT and send it to the Broker. Injecting data from port 5003 of appropriate type works 100%.
When data comes from the broker with a topic of MySensors/# (wildcard for all my sensors), translate it to the Serial MySensors protocol and send it out the already opened TCP port. TCP-out is configured to "Reply to TCP". Sending to TCP is *NOT* working. The Debug on the bottom shows that the data is of the appropriate format.
How do I get the topic outputs from MySensors/# to go to tcp-out? What am I missing?
Sincerely,
Josh Conway