ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/gvpe/src/sockinfo.C
(Generate patch)

Comparing gvpe/src/sockinfo.C (file contents):
Revision 1.27 by root, Tue Jan 17 21:25:50 2012 UTC vs.
Revision 1.30 by root, Tue Dec 4 13:51:45 2012 UTC

29 covered work. 29 covered work.
30*/ 30*/
31 31
32#include "config.h" 32#include "config.h"
33 33
34// for gethostbyname
34#include <netdb.h> 35#include <netdb.h>
36
37// for inet_aton
38#include <sys/socket.h>
39#include <netinet/in.h>
40#include <arpa/inet.h>
35 41
36#include "gettext.h" 42#include "gettext.h"
37 43
38#include "sockinfo.h" 44#include "sockinfo.h"
39#include "slog.h" 45#include "slog.h"
40 46
41#include <cstring> 47#include <cstring>
42#include <cstdio> 48#include <cstdio>
43 49
44// all ipv4-based protocols 50// all ipv4-based protocols
45#define PROTv4 (PROT_UDPv4 | PROT_TCPv4 | PROT_ICMPv4 | PROT_IPv4 | PROT_DNSv4 | PROT_IPv42) 51#define PROTv4 (PROT_UDPv4 | PROT_TCPv4 | PROT_ICMPv4 | PROT_IPv4 | PROT_DNSv4)
46 52
47void 53void
48sockinfo::set (const sockaddr_in *sa, u8 prot_) 54sockinfo::set (const sockaddr_in *sa, u8 prot_)
49{ 55{
50 host = sa->sin_addr.s_addr; 56 host = sa->sin_addr.s_addr;
51 port = prot_ & (PROT_IPv4 | PROT_ICMPv4 | PROT_IPv42) ? 0 : sa->sin_port; 57 port = prot_ & (PROT_IPv4 | PROT_ICMPv4) ? 0 : sa->sin_port;
52 prot = prot_; 58 prot = prot_;
53} 59}
54 60
55void 61void
56sockinfo::set (const char *hostname, u16 port_, u8 prot_) 62sockinfo::set (const char *hostname, u16 port_, u8 prot_)
60 port = htons (port_); 66 port = htons (port_);
61 67
62 if (prot & PROTv4 68 if (prot & PROTv4
63 && hostname) 69 && hostname)
64 { 70 {
71 struct in_addr in;
72 struct hostent *he;
73
74 if (inet_aton (hostname, &in))
75 host = in.s_addr;
65 struct hostent *he = gethostbyname (hostname); 76 else if ((he = gethostbyname (hostname))
66 77 && he->h_addrtype == AF_INET
67 if (he 78 && he->h_length == 4
68 && he->h_addrtype == AF_INET && he->h_length == 4 && he->h_addr_list[0]) 79 && he->h_addr_list[0])
69 { 80 memcpy (&host, he->h_addr_list[0], 4); //sa->sin_family = he->h_addrtype;
70 //sa->sin_family = he->h_addrtype;
71 memcpy (&host, he->h_addr_list[0], 4);
72 }
73 else 81 else
74 slog (L_NOTICE, _("unable to resolve host '%s'"), hostname); 82 slog (L_NOTICE, _("unable to resolve host '%s'"), hostname);
75 } 83 }
76} 84}
77 85
133u8 141u8
134sockinfo::supported_protocols (conf_node *conf) 142sockinfo::supported_protocols (conf_node *conf)
135{ 143{
136 u8 protocols = prot; 144 u8 protocols = prot;
137 145
138 if (prot & (PROT_IPv4 | PROT_ICMPv4 | PROT_UDPv4 | PROT_TCPv4 | PROT_IPv42)) 146 if (prot & (PROT_IPv4 | PROT_ICMPv4 | PROT_UDPv4 | PROT_TCPv4))
139 protocols |= PROT_IPv4 | PROT_ICMPv4 | PROT_IPv42; 147 protocols |= PROT_IPv4 | PROT_ICMPv4;
140 148
141 if (conf && prot & PROTv4) 149 if (conf && prot & PROTv4)
142 { 150 {
143 if (conf->protocols & PROT_UDPv4 && conf->udp_port) 151 if (conf->protocols & PROT_UDPv4 && conf->udp_port)
144 protocols |= PROT_UDPv4; 152 protocols |= PROT_UDPv4;
160 return true; 168 return true;
161 169
162 if (prot & PROTv4 170 if (prot & PROTv4
163 && prot_ & PROTv4) 171 && prot_ & PROTv4)
164 { 172 {
165 if (prot_ & (PROT_IPv4 | PROT_ICMPv4 | PROT_IPv42)) 173 if (prot_ & (PROT_IPv4 | PROT_ICMPv4))
166 { 174 {
167 prot = prot_; 175 prot = prot_;
168 port = 0; 176 port = 0;
169 return true; 177 return true;
170 } 178 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines