diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-09-06 10:43:31 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2008-09-06 10:43:31 +0000 |
commit | b4b5c311d376cd499dfeea146f0b448910700562 (patch) | |
tree | 4cf7a01a76e4344d6d5a052090b33d903299a2a3 /socket.h | |
parent | 2.1_rc8 and earlier did implicit shell expansion on script (diff) | |
download | openvpn-b4b5c311d376cd499dfeea146f0b448910700562.tar.xz |
Modified ip_or_dns_addr_safe, which validates pulled DNS names,
to more closely conform to RFC 3696:
* DNS name length must not exceed 255 characters
* DNS name characters must be limited to alphanumeric,
dash ('-'), and dot ('.')
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3312 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -399,7 +399,7 @@ int openvpn_inet_aton (const char *dotted_quad, struct in_addr *addr); /* integrity validation on pulled options */ bool ip_addr_dotted_quad_safe (const char *dotted_quad); -bool ip_or_dns_addr_safe (const char *dotted_quad, const bool allow_fqdn); +bool ip_or_dns_addr_safe (const char *addr, const bool allow_fqdn); socket_descriptor_t create_socket_tcp (void); |