home *** CD-ROM | disk | FTP | other *** search
/ Super Net 1 / SUPERNET_1.iso / PC / OTROS / SUN / PPP / SUNOS_OL / PPPD_1_0.TAR / magic.c < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-28  |  1.7 KB  |  67 lines

  1. /*
  2.  * magic.c - PPP Magic Number routines.
  3.  *
  4.  * Copyright (c) 1989 Carnegie Mellon University.
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms are permitted
  8.  * provided that the above copyright notice and this paragraph are
  9.  * duplicated in all such forms and that any documentation,
  10.  * advertising materials, and other materials related to such
  11.  * distribution and use acknowledge that the software was developed
  12.  * by Carnegie Mellon University.  The name of the
  13.  * University may not be used to endorse or promote products derived
  14.  * from this software without specific prior written permission.
  15.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  16.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  17.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18.  */
  19.  
  20. #include <stdio.h>
  21. #include <sys/types.h>
  22. #include <sys/time.h>
  23.  
  24. #include "magic.h"
  25.  
  26.  
  27. static u_long next;        /* Next value to return */
  28.  
  29. extern u_long gethostid __ARGS((void));
  30. extern long random __ARGS((void));
  31. extern void srandom __ARGS((int));
  32.  
  33.  
  34. /*
  35.  * magic_init - Initialize the magic number generator.
  36.  *
  37.  * Computes first magic number and seed for random number generator.
  38.  * Attempts to compute a random number seed which will not repeat.
  39.  * The current method uses the current hostid and current time.
  40.  */
  41. void magic_init()
  42. {
  43.     struct timeval tv;
  44.  
  45.     next = gethostid();
  46.     if (gettimeofday(&tv, NULL)) {
  47.     perror("gettimeofday");
  48.     exit(1);
  49.     }
  50.     next ^= (u_long) tv.tv_sec ^ (u_long) tv.tv_usec;
  51.  
  52.     srandom((int) next);
  53. }
  54.  
  55.  
  56. /*
  57.  * magic - Returns the next magic number.
  58.  */
  59. u_long magic()
  60. {
  61.     u_long m;
  62.  
  63.     m = next;
  64.     next = (u_long) random();
  65.     return (m);
  66. }
  67.