-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsockaddr.h
89 lines (71 loc) · 2.12 KB
/
sockaddr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2018 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#ifndef TBOX_NETWORK_SOCKADDR_H_20171105
#define TBOX_NETWORK_SOCKADDR_H_20171105
#include <sys/socket.h>
#include <netinet/in.h>
#include <cstring>
#include <string>
#include <tbox/base/assert.h>
#include "ip_address.h"
namespace tbox {
namespace network {
class DomainSockPath;
class SockAddr {
public:
SockAddr();
SockAddr(const IPAddress &ip, uint16_t port);
SockAddr(const DomainSockPath &path);
SockAddr(const struct sockaddr &addr, socklen_t len);
SockAddr(const struct sockaddr_in &addr_in);
SockAddr(const SockAddr &other);
SockAddr& operator = (const SockAddr &other);
static SockAddr FromString(const std::string &add_str);
enum Type {
kNone,
kIPv4,
kLocal, //! Unix Local socket
};
Type type() const;
std::string toString() const;
bool get(IPAddress &ip, uint16_t &port) const;
template <typename T>
socklen_t toSockAddr(T &addr) const {
TBOX_ASSERT(len_ <= sizeof(T));
::bzero(&addr, sizeof(addr));
::memcpy(&addr, &addr_, len_);
return len_;
}
bool operator == (const SockAddr &rhs) const;
bool operator != (const SockAddr &rhs) const { return !(*this == rhs); }
private:
struct sockaddr_storage addr_;
socklen_t len_ = 0; //!< 表示地址有效长度
};
class DomainSockPath {
public:
explicit DomainSockPath(const std::string &path) : path_(path) { }
const std::string& get() const { return path_; }
private:
std::string path_;
};
}
}
#endif //TBOX_NETWORK_SOCKADDR_H_20171105