type = *(authz++);
n2s(authz, len);
+ /* n2s increments authz by 2*/
+ i += 2;
if (memchr(s->s3->tlsext_authz_client_types,
type,
type = *(authz++);
n2s(authz, len);
+ /* n2s increments authz by 2 */
+ i += 2;
if (memchr(s->s3->tlsext_authz_client_types,
type,
authz_count++;
n2s(authz, length);
+ /* n2s increments authz by 2 */
+ i += 2;
authz += length;
i += length;
}
s->s3->tlsext_authz_client_types_len) != NULL)
*(ret++) = type;
n2s(authz, length);
+ /* n2s increments authz by 2 */
+ i += 2;
authz += length;
i += length;
}