#ifndef __BCCLI_PING_HPP__ #define __BCCLI_PING_HPP__ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ /** * @file * @brief header file for the ping subcommand of the bccli application * @author Dominik Meyer * @date 2019-02-07 * @copyright 2019 no yet defined */ #include #include namespace BCCLI { void ping(const std::string &broadcastAddress, const std::string &srcAddress, unsigned short port, BC::DataTypes::deviceIdType dest); }; #endif