PdCom  5.3
Process data communication client
ClientStatistics.h
Go to the documentation of this file.
1 /*****************************************************************************
2  *
3  * Copyright (C) 2022 Bjarne von Horn (vh at igh dot de).
4  *
5  * This file is part of the PdCom library.
6  *
7  * The PdCom library is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or (at your
10  * option) any later version.
11  *
12  * The PdCom library is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15  * License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with the PdCom library. If not, see <http://www.gnu.org/licenses/>.
19  *
20  *****************************************************************************/
21 
24 #ifndef PDCOM5_CLIENTSTATISTICS_H
25 #define PDCOM5_CLIENTSTATISTICS_H
26 
27 #include <chrono>
28 #include <cstddef>
29 #include <string>
30 
31 namespace PdCom {
32 
39 {
40  std::string name_;
42  std::string application_name_;
45  std::size_t received_bytes_;
46  std::size_t sent_bytes_;
47  std::chrono::nanoseconds connected_time_;
49 };
50 
51 } // namespace PdCom
52 
53 
54 #endif // PDCOM5_CLIENTSTATISTICS_H
std::string name_
Text as specified using the name attribute in <remote_host/>.
Definition: ClientStatistics.h:40
std::size_t received_bytes_
Received bytes.
Definition: ClientStatistics.h:45
Statistics about a connected client.
Definition: ClientStatistics.h:38
std::chrono::nanoseconds connected_time_
Time when client connected.
Definition: ClientStatistics.h:47
std::size_t sent_bytes_
Transmitted bytes.
Definition: ClientStatistics.h:46
std::string application_name_
Text as specified using the applicationname attribute in <remote_host/>.
Definition: ClientStatistics.h:42
Definition: ClientStatistics.h:31