* Clears a connection queue. * @param socket socket unique ptr. * @param op operation to perform */
| 63 | * @param op operation to perform |
| 64 | */ |
| 65 | bool clearConnection(std::unique_ptr<minifi::io::Socket> socket, std::string connection) { |
| 66 | return sendSingleCommand(std::move(socket), minifi::c2::Operation::CLEAR, connection); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * Updates the flow to the provided file |
no test coverage detected