Vanilla Development Maling List Archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS update: Vanilla/ntserv



Date:	Tuesday May 25, 1999 @ 6:33
Author:	cameron

Update of /home/netrek/cvsroot/Vanilla/ntserv
In directory cvs.castle.real-time.com:/var/tmp/cvs-serv3190

Modified Files:
	redraw.c 
Log Message:
increase RSA verification timer from 20 to 30 seconds

****************************************

Index: Vanilla/ntserv/redraw.c
diff -u Vanilla/ntserv/redraw.c:1.5 Vanilla/ntserv/redraw.c:1.6
--- Vanilla/ntserv/redraw.c:1.5	Fri Apr 30 18:31:32 1999
+++ Vanilla/ntserv/redraw.c	Tue May 25 06:33:56 1999
@@ -27,13 +27,14 @@
     if (testtime == -1) {
 	struct reserved_spacket sp;
 
-	    /* Give reasonable period of time to respond to query 
-	     *  (and test code if they need to) 
-	     */
+	/* Give a reasonable period of time to respond to query (and test code
+	   if they need to) */
+#define RSAREPLYTIMER 30
+
 #ifdef RSA
 	RSA_Client = 0;
 #endif
-	testtime = 200;	
+	testtime = RSAREPLYTIMER * 10;	
 	makeReservedPacket(&sp);
 	MCOPY(sp.data, testdata, RESERVED_SIZE);
 	sendClientPacket(&sp);