Home | History | Annotate | Download | only in http

Lines Matching defs:version

24   // The version of the response info used when persisting response info.
27 // The minimum version supported for deserializing response info.
30 // We reserve up to 8 bits for the version number.
109 // read flags and verify version
113 int version = flags & RESPONSE_INFO_VERSION_MASK;
114 if (version < RESPONSE_INFO_MINIMUM_VERSION ||
115 version > RESPONSE_INFO_VERSION) {
116 DLOG(ERROR) << "unexpected response info version: " << version;
138 // Version 1 only serialized only the end-entity certificate,
140 X509Certificate::PickleType type = (version == 1) ?
166 // a future version, then they must only be read if this operation succeeds.