| 10 | |
| 11 | |
| 12 | MultiCastStreamer::MultiCastStreamer (const char *ip, int port, int data_len) |
| 13 | : Streamer (data_len, "streaming_board", ip, std::to_string (port)) |
| 14 | { |
| 15 | strcpy (this->ip, ip); |
| 16 | this->port = port; |
| 17 | server = NULL; |
| 18 | is_streaming = false; |
| 19 | db = NULL; |
| 20 | } |
| 21 | |
| 22 | MultiCastStreamer::~MultiCastStreamer () |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected