HomeSort by: relevance | last modified time | path
    Searched defs:ssl_bio (Results 1 - 21 of 21) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/demos/bio/
server-cmod.c 27 BIO *ssl_bio = NULL; local
45 ssl_bio = BIO_new_ssl(ctx, 0);
51 * This means that when a new connection is accepted on 'in', The ssl_bio
55 BIO_set_accept_bios(in, ssl_bio);
56 ssl_bio = NULL;
95 BIO_free_all(ssl_bio);
saccept.c 56 BIO *ssl_bio = NULL; local
76 ssl_bio = BIO_new_ssl(ctx, 0);
82 * This means that when a new connection is accepted on 'in', The ssl_bio
86 BIO_set_accept_bios(in, ssl_bio);
87 ssl_bio = NULL;
126 BIO_free_all(ssl_bio);
server-arg.c 26 BIO *ssl_bio = NULL; local
98 ssl_bio = BIO_new_ssl(ctx, 0);
104 * This means that when a new connection is accepted on 'in', The ssl_bio
108 BIO_set_accept_bios(in, ssl_bio);
109 ssl_bio = NULL;
145 BIO_free_all(ssl_bio);
server-conf.c 28 BIO *ssl_bio = NULL; local
90 ssl_bio = BIO_new_ssl(ctx, 0);
96 * This means that when a new connection is accepted on 'in', The ssl_bio
100 BIO_set_accept_bios(in, ssl_bio);
101 ssl_bio = NULL;
140 BIO_free_all(ssl_bio);
sconnect.c 42 BIO *ssl_bio; local
67 ssl_bio = BIO_new(BIO_f_ssl());
68 BIO_set_ssl(ssl_bio, ssl, BIO_CLOSE);
77 BIO_free(ssl_bio);
82 out = BIO_push(ssl_bio, out);
  /src/crypto/external/bsd/openssl/dist/demos/bio/
server-cmod.c 27 BIO *ssl_bio, *tmp; local
44 ssl_bio = BIO_new_ssl(ctx, 0);
50 * This means that when a new connection is accepted on 'in', The ssl_bio
54 BIO_set_accept_bios(in, ssl_bio);
saccept.c 52 BIO *ssl_bio, *tmp; local
71 ssl_bio = BIO_new_ssl(ctx, 0);
77 * This means that when a new connection is accepted on 'in', The ssl_bio
81 BIO_set_accept_bios(in, ssl_bio);
server-arg.c 26 BIO *ssl_bio, *tmp; local
97 ssl_bio = BIO_new_ssl(ctx, 0);
103 * This means that when a new connection is accepted on 'in', The ssl_bio
107 BIO_set_accept_bios(in, ssl_bio);
server-conf.c 28 BIO *ssl_bio, *tmp; local
89 ssl_bio = BIO_new_ssl(ctx, 0);
95 * This means that when a new connection is accepted on 'in', The ssl_bio
99 BIO_set_accept_bios(in, ssl_bio);
sconnect.c 38 BIO *ssl_bio; local
63 ssl_bio = BIO_new(BIO_f_ssl());
64 BIO_set_ssl(ssl_bio, ssl, BIO_CLOSE);
76 out = BIO_push(ssl_bio, out);
  /src/crypto/external/bsd/openssl.old/dist/demos/bio/
server-cmod.c 27 BIO *ssl_bio, *tmp; local
44 ssl_bio = BIO_new_ssl(ctx, 0);
50 * This means that when a new connection is accepted on 'in', The ssl_bio
54 BIO_set_accept_bios(in, ssl_bio);
saccept.c 52 BIO *ssl_bio, *tmp; local
71 ssl_bio = BIO_new_ssl(ctx, 0);
77 * This means that when a new connection is accepted on 'in', The ssl_bio
81 BIO_set_accept_bios(in, ssl_bio);
server-arg.c 26 BIO *ssl_bio, *tmp; local
97 ssl_bio = BIO_new_ssl(ctx, 0);
103 * This means that when a new connection is accepted on 'in', The ssl_bio
107 BIO_set_accept_bios(in, ssl_bio);
server-conf.c 28 BIO *ssl_bio, *tmp; local
89 ssl_bio = BIO_new_ssl(ctx, 0);
95 * This means that when a new connection is accepted on 'in', The ssl_bio
99 BIO_set_accept_bios(in, ssl_bio);
sconnect.c 38 BIO *ssl_bio; local
70 ssl_bio = BIO_new(BIO_f_ssl());
71 BIO_set_ssl(ssl_bio, ssl, BIO_CLOSE);
77 out = BIO_push(ssl_bio, out);
  /src/crypto/external/apache2/openssl/dist/doc/designs/ddd/
ddd-02-conn-nonblocking-threads.c 21 BIO *ssl_bio; member in struct:app_conn_st
130 conn->ssl_bio = out;
146 l = BIO_write(conn->ssl_bio, buf, buf_len);
148 if (BIO_should_retry(conn->ssl_bio)) {
149 conn->tx_need_rx = BIO_should_read(conn->ssl_bio);
171 l = BIO_read(conn->ssl_bio, buf, buf_len);
173 if (BIO_should_retry(conn->ssl_bio)) {
174 conn->rx_need_tx = BIO_should_write(conn->ssl_bio);
193 if (!BIO_get_rpoll_descriptor(conn->ssl_bio, &d))
198 return BIO_get_fd(conn->ssl_bio, NULL)
    [all...]
ddd-05-mem-nonblocking.c 20 BIO *ssl_bio, *net_bio; member in struct:app_conn_st
62 BIO *ssl_bio, *internal_bio, *net_bio; local
105 ssl_bio = BIO_new(BIO_f_ssl());
106 if (ssl_bio == NULL) {
112 if (BIO_set_ssl(ssl_bio, ssl, BIO_CLOSE) <= 0) {
114 BIO_free(ssl_bio);
123 BIO_free(ssl_bio);
128 conn->ssl_bio = ssl_bio;
143 l = BIO_write(conn->ssl_bio, buf, buf_len)
    [all...]
ddd-02-conn-nonblocking.c 21 BIO *ssl_bio; member in struct:app_conn_st
142 conn->ssl_bio = out;
158 l = BIO_write(conn->ssl_bio, buf, buf_len);
160 if (BIO_should_retry(conn->ssl_bio)) {
161 conn->tx_need_rx = BIO_should_read(conn->ssl_bio);
183 l = BIO_read(conn->ssl_bio, buf, buf_len);
185 if (BIO_should_retry(conn->ssl_bio)) {
186 conn->rx_need_tx = BIO_should_write(conn->ssl_bio);
205 if (!BIO_get_rpoll_descriptor(conn->ssl_bio, &d))
210 return BIO_get_fd(conn->ssl_bio, NULL)
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
s_server.c 3262 BIO *io, *ssl_bio, *sbio, *edio; local
3283 ssl_bio = BIO_new(BIO_f_ssl());
3285 if ((io == NULL) || (ssl_bio == NULL) || (edio == NULL))
3335 /* No need to free |con| after this. Done by BIO_free(ssl_bio) */
3336 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3337 BIO_push(io, ssl_bio);
3338 ssl_bio = NULL;
3729 BIO_free(ssl_bio);
3741 BIO *io, *ssl_bio, *sbio; local
3750 ssl_bio = BIO_new(BIO_f_ssl())
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/
s_server.c 3045 BIO *io, *ssl_bio, *sbio; local
3066 ssl_bio = BIO_new(BIO_f_ssl());
3067 if ((io == NULL) || (ssl_bio == NULL))
3117 /* No need to free |con| after this. Done by BIO_free(ssl_bio) */
3118 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3119 BIO_push(io, ssl_bio);
3120 ssl_bio = NULL;
3489 BIO_free(ssl_bio);
3500 BIO *io, *ssl_bio, *sbio; local
3509 ssl_bio = BIO_new(BIO_f_ssl())
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/apps/
s_server.c 3002 BIO *io, *ssl_bio, *sbio; local
3014 ssl_bio = BIO_new(BIO_f_ssl());
3015 if ((io == NULL) || (ssl_bio == NULL))
3054 /* No need to free |con| after this. Done by BIO_free(ssl_bio) */
3055 BIO_set_ssl(ssl_bio, con, BIO_CLOSE);
3056 BIO_push(io, ssl_bio);
3394 BIO *io, *ssl_bio, *sbio; local
3398 ssl_bio = BIO_new(BIO_f_ssl());
3399 if ((io == NULL) || (ssl_bio == NULL))
3425 /* No need to free |con| after this. Done by BIO_free(ssl_bio) */
    [all...]

Completed in 37 milliseconds