Home | History | Annotate | Download | only in ssl

Lines Matching refs:cText

276     SSL3Ciphertext cText;
361 cText.type = (SSL3ContentType)ss->gs.hdr[0];
362 cText.version = (ss->gs.hdr[1] << 8) | ss->gs.hdr[2];
367 cText.version = dtls_DTLSVersionToTLSVersion(cText.version);
369 cText.seq_num.high = 0; cText.seq_num.low = 0;
371 cText.seq_num.high <<= 8; cText.seq_num.low <<= 8;
372 cText.seq_num.high |= ss->gs.hdr[3 + i];
373 cText.seq_num.low |= ss->gs.hdr[7 + i];
377 cText.buf = &ss->gs.inbuf;
378 rv = ssl3_HandleRecord(ss, &cText, &ss->gs.buf);
389 PORT_Assert(cText.type == content_application_data);