Don't forget to reconnect if outgoing connection fails during
authentication.
This commit is contained in:
parent
34b7a876c3
commit
24fa685859
1 changed files with 3 additions and 2 deletions
|
@ -17,7 +17,7 @@
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
$Id: net.c,v 1.35.4.97 2001/02/25 19:09:41 guus Exp $
|
$Id: net.c,v 1.35.4.98 2001/02/27 15:33:39 guus Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
@ -1217,8 +1217,9 @@ cp
|
||||||
|
|
||||||
/* Check if this was our outgoing connection */
|
/* Check if this was our outgoing connection */
|
||||||
|
|
||||||
if(cl->status.outgoing && cl->status.active)
|
if(cl->status.outgoing)
|
||||||
{
|
{
|
||||||
|
cl->status.outgoing = 0;
|
||||||
signal(SIGALRM, sigalrm_handler);
|
signal(SIGALRM, sigalrm_handler);
|
||||||
seconds_till_retry = 5;
|
seconds_till_retry = 5;
|
||||||
alarm(seconds_till_retry);
|
alarm(seconds_till_retry);
|
||||||
|
|
Loading…
Reference in a new issue