blob: 2c9760da0cae247f2fbac22331ebfcc8fd17be80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#ifndef SWIFTEN_HOSTADDRESS
#define SWIFTEN_HOSTADDRESS
#include <string>
#include <vector>
namespace Swift {
class HostAddress {
public:
HostAddress();
HostAddress(const unsigned char* address, int length);
const std::vector<unsigned char>& getRawAddress() const {
return address_;
}
std::string toString() const;
private:
std::vector<unsigned char> address_;
};
}
#endif
|