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