25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

50 satır
1.9 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. #if defined(OPENSSL_WINDOWS)
  19. OPENSSL_MSVC_PRAGMA(warning(push, 3))
  20. #include <winsock2.h>
  21. OPENSSL_MSVC_PRAGMA(warning(pop))
  22. #else
  23. #include <sys/time.h>
  24. #endif
  25. // PacketedBioCreate creates a filter BIO which implements a reliable in-order
  26. // blocking datagram socket. It internally maintains a clock and honors
  27. // |BIO_CTRL_DGRAM_SET_NEXT_TIMEOUT| based on it.
  28. //
  29. // During a |BIO_read|, the peer may signal the filter BIO to simulate a
  30. // timeout. If |advance_clock| is true, it automatically advances the clock and
  31. // continues reading, subject to the read deadline. Otherwise, it fails
  32. // immediately. The caller must then call |PacketedBioAdvanceClock| before
  33. // retrying |BIO_read|.
  34. bssl::UniquePtr<BIO> PacketedBioCreate(bool advance_clock);
  35. // PacketedBioGetClock returns the current time for |bio|.
  36. timeval PacketedBioGetClock(const BIO *bio);
  37. // PacketedBioAdvanceClock advances |bio|'s internal clock and returns true if
  38. // there is a pending timeout. Otherwise, it returns false.
  39. bool PacketedBioAdvanceClock(BIO *bio);
  40. #endif // HEADER_PACKETED_BIO