Lines Matching refs:version
44 #include <mbedtls/version.h>
60 coap_tls_version_t version;
62 memset(&version, 0, sizeof(coap_tls_version_t));
65 version.version = SSLeay();
66 version.type = COAP_TLS_LIBRARY_OPENSSL;
69 version.version = 0;
81 version.version = (p1 << 16) | (p2 << 8) | p3;
83 version.type = COAP_TLS_LIBRARY_TINYDTLS;
85 version.version = GNUTLS_VERSION_NUMBER;
86 version.type = COAP_TLS_LIBRARY_GNUTLS;
88 version.version = MBEDTLS_VERSION_NUMBER;
89 version.type = COAP_TLS_LIBRARY_MBEDTLS;
91 version.version = 0;
92 version.type = COAP_TLS_LIBRARY_NOTLS;
96 CU_ASSERT(version.version == v->version);
97 CU_ASSERT(version.type == v->type);