Go to the documentation of this file.
19 #ifndef GRPC_CORE_TSI_SSL_TYPES_H
20 #define GRPC_CORE_TSI_SSL_TYPES_H
34 #include <openssl/ssl.h>
36 #ifdef OPENSSL_IS_BORINGSSL
37 #define TSI_INT_AS_SIZE(x) ((size_t)(x))
38 #define TSI_SIZE_AS_SIZE(x) (x)
40 #define TSI_INT_AS_SIZE(x) (x)
41 #define TSI_SIZE_AS_SIZE(x) ((int)(x))