Lines Matching defs:version
195 if (s->method->version == DTLS_ANY_VERSION)
196 s->version = DTLS_MAX_VERSION_INTERNAL;
199 s->client_version = s->version = DTLS1_BAD_VER;
202 s->version = s->method->version;
473 * Note: This check deliberately excludes DTLS1_BAD_VER because that version
479 if ((s->version & 0xff00) != (DTLS1_VERSION & 0xff00)) {
555 * Check record version number. We only check that the major version is
622 s->msg_callback(0, s->version, SSL3_RT_HANDSHAKE, data,
632 * Verify client version is supported
634 if (DTLS_VERSION_LT(clientvers, (unsigned int)s->method->version) &&
635 s->method->version != DTLS_ANY_VERSION) {
681 unsigned int version;
700 * Special case: for hello verify request, client version 1.0 and we
701 * haven't decided which version to use yet send back using version
704 version = (s->method->version == DTLS_ANY_VERSION) ? DTLS1_VERSION
705 : s->version;
714 || !WPACKET_put_bytes_u16(&wpkt, version)