Home | History | Annotate | Download | only in apps

Lines Matching defs:servername

547 	BIO_printf(bio_err," -servername host - servername for HostName TLS extension\n");
549 BIO_printf(bio_err," -cert2 arg - certificate file to use for servername\n");
551 BIO_printf(bio_err," -key2 arg - Private Key file to use for servername, in cert file if\n");
724 char * servername;
733 const char * servername = SSL_get_servername(s, TLSEXT_NAMETYPE_host_name);
734 if (servername && p->biodebug)
735 BIO_printf(p->biodebug,"Hostname in TLS extension: \"%s\"\n",servername);
737 if (!p->servername)
740 if (servername)
742 if (strcmp(servername,p->servername))
1294 else if (strcmp(*argv,"-servername") == 0)
1297 tlsextcbp.servername= *(++argv);
1421 if (tlsextcbp.servername)