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

Comparing gvpe/src/connection.C (file contents):
Revision 1.25 by pcg, Sat Jan 17 01:18:36 2004 UTC vs.
Revision 1.26 by pcg, Sat Jan 17 14:08:57 2004 UTC

724{ 724{
725 if (!ictx 725 if (!ictx
726 && conf != THISNODE 726 && conf != THISNODE
727 && connectmode != conf_node::C_NEVER 727 && connectmode != conf_node::C_NEVER
728 && connectmode != conf_node::C_DISABLED 728 && connectmode != conf_node::C_DISABLED
729 && w.at <= NOW) 729 && NOW > w.at)
730 { 730 {
731 double retry_int = double (retry_cnt & 3 ? (retry_cnt & 3) : 1 << (retry_cnt >> 2)) * 0.6; 731 double retry_int = double (retry_cnt & 3 ? (retry_cnt & 3) : 1 << (retry_cnt >> 2)) * 0.6;
732 732
733 if (retry_int < 3600 * 8) 733 if (retry_int < 3600 * 8)
734 retry_cnt++; 734 retry_cnt++;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines