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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
/*
* psocksxx - A C++ wrapper for POSIX sockets
* Copyright (C) 2013 Uditha Atukorala
*
* This software library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This software library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this software library. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "nsockaddr.h"
#include "sockstreambuf.h"
#include <netdb.h>
#include <cstring>
namespace psocksxx {
nsockaddr::nsockaddr( const char * node, unsigned short port ) throw( sockexception ) {
// set the socket address family
sin_family = sockaddr::af_inet;
// set the port
sin_port = htons( port );
// set the address
sin_addr.s_addr = resolve_node( node );
// zero out internals
memset( sin_zero, 0, sizeof( sin_zero ) );
}
nsockaddr::nsockaddr( unsigned short port ) throw() {
// set the socket address family
sin_family = sockaddr::af_inet;
// set the port
sin_port = htons( port );
// set the address
sin_addr.s_addr = INADDR_ANY;
// zero out internals
memset( sin_zero, 0, sizeof( sin_zero ) );
}
nsockaddr::nsockaddr( const char * node, const char * service ) throw( sockexception ) {
int status;
addrinfo hints;
addrinfo * result;
sockaddr_in * sinaddr;
// empty the hints structure
memset( &hints, 0, sizeof( hints ) );
// setup hints
hints.ai_family = sockaddr::af_inet;
hints.ai_socktype = sockstreambuf::sock_stream;
// translate node and service into a network address
if ( ( status = ( getaddrinfo( node, service, &hints, &result ) ) ) != 0 ) {
throw sockexception( gai_strerror( status ) );
}
// grab the address info we need
sinaddr = (sockaddr_in *) result->ai_addr;
sin_family = sockaddr::af_inet;
sin_addr = sinaddr->sin_addr;
sin_port = sinaddr->sin_port;
// zero out internals
memset( sin_zero, 0, sizeof( sin_zero ) );
// cleanup
freeaddrinfo( result );
}
in_addr_t nsockaddr::resolve_node( const char * node ) throw( sockexception ) {
int status;
addrinfo hints;
addrinfo * result;
in_addr_t in_addr;
// empty the hints structure
memset( &hints, 0, sizeof( hints ) );
// setup hints
hints.ai_family = sockaddr::af_inet;
hints.ai_socktype = sockstreambuf::sock_stream;
// resolve node
if ( ( status = ( getaddrinfo( node, 0, &hints, &result ) ) ) != 0 ) {
throw sockexception( gai_strerror( status ) );
}
// grab the address info we need
in_addr = ( (sockaddr_in *) result->ai_addr )->sin_addr.s_addr;
// cleanup
freeaddrinfo( result );
return in_addr;
}
socklen_t nsockaddr::size() const throw() {
return sizeof( sockaddr_in );
}
::sockaddr * nsockaddr::psockaddr() const throw() {
return (::sockaddr *) (sockaddr_in *) this;
}
} /* end of namespace psocksxx */
|