You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.6 KiB

  1. /* Copyright (c) 2014, Google Inc.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  10. * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
  12. * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  13. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
  14. #ifndef HEADER_PACKETED_BIO
  15. #define HEADER_PACKETED_BIO
  16. #include <openssl/base.h>
  17. #include <openssl/bio.h>
  18. #include "../../crypto/test/scoped_types.h"
  19. #if defined(OPENSSL_WINDOWS)
  20. #pragma warning(push, 3)
  21. #include <winsock2.h>
  22. #pragma warning(pop)
  23. #else
  24. #include <sys/time.h>
  25. #endif
  26. // PacketedBioCreate creates a filter BIO which implements a reliable in-order
  27. // blocking datagram socket. The resulting BIO, on |BIO_read|, may simulate a
  28. // timeout which sets |*out_timeout| to the timeout and fails the read.
  29. // |*out_timeout| must be zero on entry to |BIO_read|; it is an error to not
  30. // apply the timeout before the next |BIO_read|.
  31. //
  32. // Note: The read timeout simulation is intended to be used with the async BIO
  33. // wrapper. It doesn't simulate BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT, used in DTLS's
  34. // blocking mode.
  35. ScopedBIO PacketedBioCreate(timeval *out_timeout);
  36. #endif // HEADER_PACKETED_BIO