Files
aman-es/include/aman/types/Communication.h
2021-08-16 08:08:41 +02:00

36 lines
1.1 KiB
C++

/*
* @brief Defines the communication configuration
* @file aman/types/Communication.h
* @author Sven Czarnian <devel@svcz.de>
* @copyright Copyright 2021 Sven Czarnian
* @license This project is published under the GNU General Public License v3 (GPLv3)
*/
#pragma once
#include <string>
namespace aman {
/**
* @brief Defines the communication structure
* @ingroup types
*/
struct Communication {
bool valid; /**< Marks if the configuration is valid */
std::string address; /**< The address of the backend */
std::uint16_t portReporter; /**< The reported port of the backend */
std::uint16_t portNotification; /**< The notification port of the backend */
std::string identifier; /**< The user's identifier for the connection */
/**
* @brief Initializes an invalid configuration
*/
Communication() :
valid(false),
address(),
portReporter(0),
portNotification(0),
identifier() { }
};
}