summaryrefslogtreecommitdiff
path: root/gr-network/python/network/qa_udp_source.py
Commit message (Collapse)AuthorAgeFilesLines
* network: fix segfaults when TCP & UDP blocks are restartedClayton Smith2021-12-071-0/+36
The TCP and UDP blocks segfault if start() is called after stop(), because stop() frees resources that are not re-allocated by start(). To fix this, I've moved resource allocation for these blocks from the constructor to start(). Signed-off-by: Clayton Smith <argilo@gmail.com>