comp_err.c 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Generated by util/mkerr.pl DO NOT EDIT
  3. * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
  4. *
  5. * Licensed under the OpenSSL license (the "License"). You may not use
  6. * this file except in compliance with the License. You can obtain a copy
  7. * in the file LICENSE in the source distribution or at
  8. * https://www.openssl.org/source/license.html
  9. */
  10. #include <stdio.h>
  11. #include <openssl/err.h>
  12. #include <openssl/comp.h>
  13. /* BEGIN ERROR CODES */
  14. #ifndef OPENSSL_NO_ERR
  15. # define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)
  16. # define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
  17. static ERR_STRING_DATA COMP_str_functs[] = {
  18. {ERR_FUNC(COMP_F_BIO_ZLIB_FLUSH), "bio_zlib_flush"},
  19. {ERR_FUNC(COMP_F_BIO_ZLIB_NEW), "bio_zlib_new"},
  20. {ERR_FUNC(COMP_F_BIO_ZLIB_READ), "bio_zlib_read"},
  21. {ERR_FUNC(COMP_F_BIO_ZLIB_WRITE), "bio_zlib_write"},
  22. {0, NULL}
  23. };
  24. static ERR_STRING_DATA COMP_str_reasons[] = {
  25. {ERR_REASON(COMP_R_ZLIB_DEFLATE_ERROR), "zlib deflate error"},
  26. {ERR_REASON(COMP_R_ZLIB_INFLATE_ERROR), "zlib inflate error"},
  27. {ERR_REASON(COMP_R_ZLIB_NOT_SUPPORTED), "zlib not supported"},
  28. {0, NULL}
  29. };
  30. #endif
  31. int ERR_load_COMP_strings(void)
  32. {
  33. #ifndef OPENSSL_NO_ERR
  34. if (ERR_func_error_string(COMP_str_functs[0].error) == NULL) {
  35. ERR_load_strings(0, COMP_str_functs);
  36. ERR_load_strings(0, COMP_str_reasons);
  37. }
  38. #endif
  39. return 1;
  40. }