dtls1.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /*
  2. * Copyright 2005-2018 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OPENSSL_DTLS1_H
  10. # define OPENSSL_DTLS1_H
  11. # pragma once
  12. # include <openssl/macros.h>
  13. # ifndef OPENSSL_NO_DEPRECATED_3_0
  14. # define HEADER_DTLS1_H
  15. # endif
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #include <openssl/opensslconf.h>
  20. # define DTLS1_VERSION 0xFEFF
  21. # define DTLS1_2_VERSION 0xFEFD
  22. # ifndef OPENSSL_NO_DEPRECATED_3_0
  23. # define DTLS_MIN_VERSION DTLS1_VERSION
  24. # define DTLS_MAX_VERSION DTLS1_2_VERSION
  25. # endif
  26. # define DTLS1_VERSION_MAJOR 0xFE
  27. # define DTLS1_BAD_VER 0x0100
  28. /* Special value for method supporting multiple versions */
  29. # define DTLS_ANY_VERSION 0x1FFFF
  30. /* lengths of messages */
  31. /*
  32. * Actually the max cookie length in DTLS is 255. But we can't change this now
  33. * due to compatibility concerns.
  34. */
  35. # define DTLS1_COOKIE_LENGTH 256
  36. # define DTLS1_RT_HEADER_LENGTH 13
  37. # define DTLS1_HM_HEADER_LENGTH 12
  38. # define DTLS1_HM_BAD_FRAGMENT -2
  39. # define DTLS1_HM_FRAGMENT_RETRY -3
  40. # define DTLS1_CCS_HEADER_LENGTH 1
  41. # define DTLS1_AL_HEADER_LENGTH 2
  42. /* Timeout multipliers */
  43. # define DTLS1_TMO_READ_COUNT 2
  44. # define DTLS1_TMO_WRITE_COUNT 2
  45. # define DTLS1_TMO_ALERT_COUNT 12
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49. #endif