Diag-Client-Lib
vd_conversation_type.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2 * Copyright (C) 2024 Avijit Dey
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8 #ifndef DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_VD_CONVERSATION_TYPE_H
9 #define DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_VD_CONVERSATION_TYPE_H
10 
11 #include <cstdint>
12 #include <string>
13 
14 namespace diag {
15 namespace client {
16 namespace conversation {
17 
25  std::string udp_address{};
26 
30  std::string udp_broadcast_address{};
31 
35  uint16_t port_num{};
36 
40  std::uint8_t handler_id{};
41 };
42 
43 } // namespace conversation
44 } // namespace client
45 } // namespace diag
46 #endif // DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_VD_CONVERSATION_TYPE_H
Structure containing VD conversation type.
std::string udp_address
The Udp IP address of conversation.
uint16_t port_num
The Port number of conversation.
std::uint8_t handler_id
The handle id of conversation.
std::string udp_broadcast_address
The Udp broadcast IP address of conversation.