From: Paul Mackerras Date: Mon, 24 Apr 1995 05:57:01 +0000 (+0000) Subject: use drand48 et al. instead of random X-Git-Tag: RELEASE_2_3_6~776 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=692445d687c1874c9da1b77875dbfc8e50a9a6ae;hp=8ed8058b62ae72fba40f04c1dbd7f19e58ed500f use drand48 et al. instead of random --- diff --git a/pppd/magic.c b/pppd/magic.c index 7164763..7391b14 100644 --- a/pppd/magic.c +++ b/pppd/magic.c @@ -18,7 +18,7 @@ */ #ifndef lint -static char rcsid[] = "$Id: magic.c,v 1.3 1994/09/21 06:47:37 paulus Exp $"; +static char rcsid[] = "$Id: magic.c,v 1.4 1995/04/24 05:57:01 paulus Exp $"; #endif #include @@ -30,41 +30,58 @@ static char rcsid[] = "$Id: magic.c,v 1.3 1994/09/21 06:47:37 paulus Exp $"; static u_int32_t next; /* Next value to return */ -extern u_int32_t gethostid __P((void)); -extern long random __P((void)); -extern void srandom __P((int)); +extern int gethostid __P((void)); +extern long mrand48 __P((void)); +extern void srand48 __P((long)); /* * magic_init - Initialize the magic number generator. * - * Computes first magic number and seed for random number generator. * Attempts to compute a random number seed which will not repeat. - * The current method uses the current hostid and current time. + * The current method uses the current hostid and current time, currently. */ -void magic_init() +void +magic_init() { - struct timeval tv; + long seed; - next = gethostid(); - if (gettimeofday(&tv, NULL)) { - perror("gettimeofday"); - exit(1); - } - next ^= (u_int32_t) tv.tv_sec ^ (u_int32_t) tv.tv_usec; - - srandom((int) next); + seed = gethostid() ^ time(NULL); + srand48(seed); } - /* * magic - Returns the next magic number. */ -u_int32_t magic() +u_int32_t +magic() { - u_int32_t m; + return (u_int32_t) mrand48(); +} + +#ifdef NO_DRAND48 +/* + * Substitute procedures for those systems which don't have + * drand48 et al. + */ - m = next; - next = (u_int32_t) random(); - return (m); +double +drand48() +{ + return (double)random() / (double)0x7fffffffL; /* 2**31-1 */ } + +long +mrand48() +{ + return random(); +} + +void +srand48(seedval) +long seedval; +{ + srandom((int)seedval); +} + +#endif