Skip to content

Commit

Permalink
DNS checks for >= 0.99 as suggested by integral
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed May 27, 2006
1 parent 1b0611d commit 50232ab
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Changes
Expand Up @@ -6,7 +6,7 @@ Revision history for Perl extension POE::Component::IRC.
for reporting that.
- 'irc_dcc_failed' event was undocumented. Fixed.
- Switched the poco-client-dns checks to 'use', so as to
ensure that we only load >= 0.98.
ensure that we only load >= 0.99.
- Amendments to shutdown so that it sends a quit message
to the ircd if we are connected.
- Amended Connector plugin so the lag is collected
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Component/IRC.pm
Expand Up @@ -64,7 +64,7 @@ BEGIN {
BEGIN {
$GOT_CLIENT_DNS = 0;
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$GOT_CLIENT_DNS = 1;
};
}
Expand Down
2 changes: 1 addition & 1 deletion lib/POE/Component/IRC/Test/Harness.pm
Expand Up @@ -47,7 +47,7 @@ BEGIN: {
BEGIN: {
$GOT_DNS = 0;
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$GOT_DNS = 1;
};
}
Expand Down
2 changes: 1 addition & 1 deletion t/1_spawn.t
Expand Up @@ -6,7 +6,7 @@ my $GOT_DNS;
BEGIN: {
$GOT_DNS = 0;
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$GOT_DNS = 1;
};
}
Expand Down
2 changes: 1 addition & 1 deletion t/2_Qnet.t
Expand Up @@ -6,7 +6,7 @@ my $GOT_DNS;
BEGIN: {
$GOT_DNS = 0;
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$GOT_DNS = 1;
};
}
Expand Down
2 changes: 1 addition & 1 deletion t/2_State.t
Expand Up @@ -6,7 +6,7 @@ my $GOT_DNS;
BEGIN: {
$GOT_DNS = 0;
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$GOT_DNS = 1;
};
}
Expand Down
2 changes: 1 addition & 1 deletion t/testsuite_03_online.t
Expand Up @@ -4,7 +4,7 @@ my $dns;

BEGIN: {
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$dns = POE::Component::Client::DNS->spawn( Alias => 'foo' );
};
}
Expand Down
2 changes: 1 addition & 1 deletion t/testsuite_12_resolver.t
Expand Up @@ -6,7 +6,7 @@ my $GOT_DNS;
BEGIN: {
$GOT_DNS = 0;
eval {
use POE::Component::Client::DNS 0.98;
use POE::Component::Client::DNS 0.99;
$GOT_DNS = 1;
};
}
Expand Down

0 comments on commit 50232ab

Please sign in to comment.