-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddresses.cpp
More file actions
57 lines (47 loc) · 1.07 KB
/
Addresses.cpp
File metadata and controls
57 lines (47 loc) · 1.07 KB
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
// Copyright 2015, The maxSocket Contributors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <maxSocket/IP/Addresses.hpp>
namespace maxSocket
{
namespace v0
{
namespace IP
{
Addresses::Addresses() MAX_DOES_NOT_THROW
: EndPoints( NULL )
{
}
Addresses::Addresses( Addresses && rhs ) MAX_DOES_NOT_THROW
: EndPoints( rhs.EndPoints )
{
rhs.EndPoints = NULL;
}
Addresses::Addresses( addrinfo * EndPoints ) MAX_DOES_NOT_THROW
: EndPoints( EndPoints )
{
}
Addresses::~Addresses() MAX_DOES_NOT_THROW
{
if( EndPoints != NULL )
{
freeaddrinfo( EndPoints );
}
}
Addresses & Addresses::operator =( Addresses && rhs ) MAX_DOES_NOT_THROW
{
EndPoints = rhs.EndPoints;
rhs.EndPoints = NULL;
return *this;
}
AddressesIterator Addresses::begin() const MAX_DOES_NOT_THROW
{
return AddressesIterator( EndPoints );
}
AddressesIterator Addresses::end() const MAX_DOES_NOT_THROW
{
return AddressesIterator( NULL );
}
} // namespace IP
} // namespace v0
} // namespace maxSocket