The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
Changes 14
META.json 11
META.yml 11
lib/Net/Google/SafeBrowsing2.pm 26
4 files changed (This is a version diff) 512
@@ -73,4 +73,7 @@ Revision history for Perl extension Net::Google::SafeBrowsing2.
 		- Fix Po documentation (contribution)
 
 1.09 Wed Jun 05 2013 20:29:00
-		- Use HTTPS to access safebrowsing.clients.google.com/.
\ No newline at end of file
+		- Use HTTPS to access safebrowsing.clients.google.com/.
+
+1.10 Tue Dec 31 2013 22:15:00
+		- Force IPv4 to solve bug on CentOS.
\ No newline at end of file
@@ -49,5 +49,5 @@
       }
    },
    "release_status" : "stable",
-   "version" : "1.09"
+   "version" : "1.10"
 }
@@ -31,4 +31,4 @@ requires:
   Text::Trim: 0
   URI: 0
   constant: 0
-version: 1.09
+version: 1.10
@@ -15,13 +15,13 @@ use MIME::Base64::URLSafe;
 use MIME::Base64;
 use String::HexConvert;
 use File::Slurp;
-use IO::Socket::SSL;
+use IO::Socket::SSL 'inet4' ;
 
 
 use Exporter 'import';
 our @EXPORT = qw(DATABASE_RESET MAC_ERROR MAC_KEY_ERROR INTERNAL_ERROR SERVER_ERROR NO_UPDATE NO_DATA SUCCESSFUL MALWARE PHISHING);
 
-our $VERSION = '1.09';
+our $VERSION = '1.10';
 
 BEGIN {
     IO::Socket::SSL::set_ctx_defaults(
@@ -1777,6 +1777,10 @@ sub expand_range {
 
 =over 4
 
+=item 1.10
+
+Force IPv4 to solve bug on CentOS.
+
 =item 1.09
 
 Use HTTPS to access safebrowsing.clients.google.com/.