| 14 | master_udp::master_udp() {} |
| 15 | |
| 16 | master_udp::~master_udp() |
| 17 | { |
| 18 | for (std::vector<socket_stream*>::iterator it = sstreams_.begin(); |
| 19 | it != sstreams_.end(); ++it) { |
| 20 | |
| 21 | (*it)->unbind(); |
| 22 | delete *it; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | static bool __has_called = false; |
| 27 |