CCIMXDesktop
 
Loading...
Searching...
No Matches
NetInfo.h
1#ifndef NETINFO_H
2#define NETINFO_H
3#include <QString>
4struct SelfInfo {
5 ~SelfInfo() = default;
6 int port;
7 bool isValud() const;
8};
9
10struct PeerInfo {
11 ~PeerInfo() = default;
12 QString host_address;
13 int target_port;
14 bool isValid() const;
15};
16
17#endif // NETINFO_H
Definition NetInfo.h:10
Definition NetInfo.h:4