mirror of
https://github.com/craigerl/aprsd.git
synced 2025-07-02 17:05:18 -04:00
Since all outbound messages have a send() method that starts a separate there, there really is no reason for the transmit queue thread at all. All it did was get a message from the queue and then call send on it, which would start another thread. This removes that intermediate TXThread. When you want to send a message just call send() on the message object.