• Home
  • Raw
  • Download

Lines Matching refs:sdata

721 			unsigned char *sdata;  in ssl_parse_clienthello_tlsext()  local
738 sdata = data; in ssl_parse_clienthello_tlsext()
741 servname_type = *(sdata++); in ssl_parse_clienthello_tlsext()
742 n2s(sdata,len); in ssl_parse_clienthello_tlsext()
771 memcpy(s->session->tlsext_hostname, sdata, len); in ssl_parse_clienthello_tlsext()
785 && strncmp(s->session->tlsext_hostname, (char *)sdata, len) == 0; in ssl_parse_clienthello_tlsext()
807 unsigned char *sdata = data; in ssl_parse_clienthello_tlsext() local
808 int ecpointformatlist_length = *(sdata++); in ssl_parse_clienthello_tlsext()
829 memcpy(s->session->tlsext_ecpointformatlist, sdata, ecpointformatlist_length); in ssl_parse_clienthello_tlsext()
833 sdata = s->session->tlsext_ecpointformatlist; in ssl_parse_clienthello_tlsext()
835 fprintf(stderr,"%i ",*(sdata++)); in ssl_parse_clienthello_tlsext()
842 unsigned char *sdata = data; in ssl_parse_clienthello_tlsext() local
843 int ellipticcurvelist_length = (*(sdata++) << 8); in ssl_parse_clienthello_tlsext()
844 ellipticcurvelist_length += (*(sdata++)); in ssl_parse_clienthello_tlsext()
865 memcpy(s->session->tlsext_ellipticcurvelist, sdata, ellipticcurvelist_length); in ssl_parse_clienthello_tlsext()
869 sdata = s->session->tlsext_ellipticcurvelist; in ssl_parse_clienthello_tlsext()
871 fprintf(stderr,"%i ",*(sdata++)); in ssl_parse_clienthello_tlsext()
880 unsigned char *sdata = data; in ssl_parse_clienthello_tlsext() local
887 n2s(sdata, s->s3->client_opaque_prf_input_len); in ssl_parse_clienthello_tlsext()
899 s->s3->client_opaque_prf_input = BUF_memdup(sdata, s->s3->client_opaque_prf_input_len); in ssl_parse_clienthello_tlsext()
936 const unsigned char *sdata; in ssl_parse_clienthello_tlsext() local
963 sdata = data; in ssl_parse_clienthello_tlsext()
966 &sdata, idsize); in ssl_parse_clienthello_tlsext()
972 if (data != sdata) in ssl_parse_clienthello_tlsext()
1008 sdata = data; in ssl_parse_clienthello_tlsext()
1013 &sdata, dsize); in ssl_parse_clienthello_tlsext()
1015 || (data + dsize != sdata)) in ssl_parse_clienthello_tlsext()
1138 unsigned char *sdata = data; in ssl_parse_serverhello_tlsext() local
1139 int ecpointformatlist_length = *(sdata++); in ssl_parse_serverhello_tlsext()
1154 memcpy(s->session->tlsext_ecpointformatlist, sdata, ecpointformatlist_length); in ssl_parse_serverhello_tlsext()
1157 sdata = s->session->tlsext_ecpointformatlist; in ssl_parse_serverhello_tlsext()
1159 fprintf(stderr,"%i ",*(sdata++)); in ssl_parse_serverhello_tlsext()
1185 unsigned char *sdata = data; in ssl_parse_serverhello_tlsext() local
1192 n2s(sdata, s->s3->server_opaque_prf_input_len); in ssl_parse_serverhello_tlsext()
1204 s->s3->server_opaque_prf_input = BUF_memdup(sdata, s->s3->server_opaque_prf_input_len); in ssl_parse_serverhello_tlsext()