curl_rand.c 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at http://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "setup.h"
  23. #include <curl/curl.h>
  24. #include "curl_rand.h"
  25. #define _MPRINTF_REPLACE /* use our functions only */
  26. #include <curl/mprintf.h>
  27. #include "curl_memory.h"
  28. /* The last #include file should be: */
  29. #include "memdebug.h"
  30. /* Private pseudo-random number seed. Unsigned integer >= 32bit. Threads
  31. mutual exclusion is not implemented to acess it since we do not require
  32. high quality random numbers (only used in form boudary generation). */
  33. static unsigned int randseed;
  34. /* Pseudo-random number support. */
  35. unsigned int Curl_rand(void)
  36. {
  37. unsigned int r;
  38. /* Return an unsigned 32-bit pseudo-random number. */
  39. r = randseed = randseed * 1103515245 + 12345;
  40. return (r << 16) | ((r >> 16) & 0xFFFF);
  41. }
  42. void Curl_srand(void)
  43. {
  44. /* Randomize pseudo-random number sequence. */
  45. randseed = (unsigned int) time(NULL);
  46. Curl_rand();
  47. Curl_rand();
  48. Curl_rand();
  49. }