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.
 
 
 
 
 
 

46 regels
1.8 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_ASYNC_BIO
  15. #define HEADER_ASYNC_BIO
  16. #include <openssl/bio.h>
  17. #include "../../crypto/test/scoped_types.h"
  18. // AsyncBioCreate creates a filter BIO for testing asynchronous state
  19. // machines which consume a stream socket. Reads and writes will fail
  20. // and return EAGAIN unless explicitly allowed. Each async BIO has a
  21. // read quota and a write quota. Initially both are zero. As each is
  22. // incremented, bytes are allowed to flow through the BIO.
  23. ScopedBIO AsyncBioCreate();
  24. // AsyncBioCreateDatagram creates a filter BIO for testing for
  25. // asynchronous state machines which consume datagram sockets. The read
  26. // and write quota count in packets rather than bytes.
  27. ScopedBIO AsyncBioCreateDatagram();
  28. // AsyncBioAllowRead increments |bio|'s read quota by |count|.
  29. void AsyncBioAllowRead(BIO *bio, size_t count);
  30. // AsyncBioAllowWrite increments |bio|'s write quota by |count|.
  31. void AsyncBioAllowWrite(BIO *bio, size_t count);
  32. // AsyncBioEnforceWriteQuota configures where |bio| enforces its write quota.
  33. void AsyncBioEnforceWriteQuota(BIO *bio, bool enforce);
  34. #endif // HEADER_ASYNC_BIO