• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/

Lines Matching defs:io

1166 			BIO_printf(bio_err,"turning on non blocking io\n");
1584 BIO *io,*ssl_bio,*sbio;
1589 io=BIO_new(BIO_f_buffer());
1591 if ((io == NULL) || (ssl_bio == NULL)) goto err;
1599 BIO_printf(bio_err,"turning on non blocking io\n");
1606 if (!BIO_set_write_buffer_size(io,bufsize)) goto err;
1632 BIO_push(io,ssl_bio);
1634 io = BIO_push(BIO_new(BIO_f_ebcdic_filter()),io);
1676 i=BIO_gets(io,buf,bufsize-1);
1679 if (!BIO_should_retry(io))
1711 BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1712 BIO_puts(io,"<HTML><BODY BGCOLOR=\"#ffffff\">\n");
1713 BIO_puts(io,"<pre>\n");
1714 /* BIO_puts(io,SSLeay_version(SSLEAY_VERSION));*/
1715 BIO_puts(io,"\n");
1718 BIO_puts(io,local_argv[i]);
1719 BIO_write(io," ",1);
1721 BIO_puts(io,"\n");
1725 BIO_printf(io,"Ciphers supported in s_server binary\n");
1731 BIO_printf(io,"%-11s:%-25s",
1735 BIO_puts(io,"\n");
1737 BIO_puts(io,"\n");
1741 BIO_printf(io,"---\nCiphers common between both SSL end points:\n");
1747 BIO_write(io,space,26-j);
1750 BIO_write(io,((i%3)?" ":"\n"),1);
1754 BIO_write(io,p,1);
1759 BIO_puts(io,"\n");
1761 BIO_printf(io,((con->hit)
1765 BIO_printf(io,"%s, Cipher is %s\n",
1768 SSL_SESSION_print(io,SSL_get_session(con));
1769 BIO_printf(io,"---\n");
1770 print_stats(io,SSL_get_SSL_CTX(con));
1771 BIO_printf(io,"---\n");
1775 BIO_printf(io,"Client certificate\n");
1776 X509_print(io,peer);
1777 PEM_write_bio_X509(io,peer);
1780 BIO_puts(io,"no client certificate available\n");
1781 BIO_puts(io,"</BODY></HTML>\r\n\r\n");
1819 BIO_puts(io,text);
1820 BIO_printf(io,"'%s' is an invalid file name\r\n",p);
1827 BIO_puts(io,text);
1828 BIO_printf(io,"'%s' contains '..' reference\r\n",p);
1834 BIO_puts(io,text);
1835 BIO_printf(io,"'%s' is an invalid path\r\n",p);
1848 BIO_puts(io,text);
1849 BIO_printf(io,"Error accessing '%s'\r\n",p);
1850 ERR_print_errors(io);
1858 BIO_puts(io,text);
1859 BIO_printf(io,"'%s' is a directory\r\n",p);
1866 BIO_puts(io,text);
1867 BIO_printf(io,"Error opening '%s'\r\n",p);
1868 ERR_print_errors(io);
1881 BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/html\r\n\r\n");
1883 BIO_puts(io,"HTTP/1.0 200 ok\r\nContent-type: text/plain\r\n\r\n");
1908 k=BIO_write(io,&(buf[j]),i-j);
1911 if (!BIO_should_retry(io))
1932 i=(int)BIO_flush(io);
1935 if (!BIO_should_retry(io))
1948 * BIO_free_all(io) procession */
1957 if (io != NULL) BIO_free_all(io);