Home
last modified time | relevance | path

Searched refs:sessions (Results 1 – 25 of 144) sorted by relevance

123456

/freebsd-10-stable/crypto/openssl/doc/ssl/
DSSL_CTX_sess_number.pod26 SSL_CTX_sess_number() returns the current number of sessions in the internal
33 SSL/TLS sessions in client mode.
42 SSL/TLS sessions in server mode.
47 SSL_CTX_sess_hits() returns the number of successfully reused sessions.
52 SSL_CTX_sess_cb_hits() returns the number of successfully retrieved sessions
55 SSL_CTX_sess_misses() returns the number of sessions proposed by clients
58 SSL_CTX_sess_timeouts() returns the number of sessions proposed by clients
60 but that were invalid due to timeout. These sessions are not included in
63 SSL_CTX_sess_cache_full() returns the number of sessions that were removed
DSSL_CTX_sess_set_cache_size.pod24 currently 1024*20, so that up to 20000 sessions can be held. This size
28 When the maximum number of sessions is reached, no more new sessions are
31 expired sessions.
33 If the size of the session cache is reduced and more sessions are already
36 expiration of sessions.
DSSL_CTX_flush_sessions.pod5 SSL_CTX_flush_sessions, SSL_flush_sessions - remove expired sessions
17 B<ctx> to remove sessions expired at time B<tm>.
23 If enabled, the internal session cache will collect all sessions established
25 As sessions will not be reused ones they are expired, they should be
27 automatically whenever 255 new sessions were established (see
35 SSL_CTX_flush_sessions() will only check sessions stored in the internal
DSSL_CTX_set_session_cache_mode.pod23 The OpenSSL library can store/retrieve SSL/TLS sessions for later reuse.
24 The sessions can be held in memory for each B<ctx>, if more than one
25 SSL_CTX object is being maintained, the sessions are unique for each SSL_CTX
52 Client sessions are added to the session cache. As there is no reliable way
61 Server sessions are added to the session cache. When a client proposes a
73 Normally the session cache is checked for expired sessions every
84 automatically look up sessions in the internal cache, even if sessions are
93 sessions negotiated in an SSL/TLS handshake may be cached for possible reuse.
96 prevent sessions being stored in the internal cache (though the application can
/freebsd-10-stable/contrib/netbsd-tests/ipf/expected/
Dn4_614 List of active sessions:
18 List of active state sessions:
45 List of active sessions:
49 List of active state sessions:
76 List of active sessions:
81 List of active state sessions:
108 List of active sessions:
112 List of active state sessions:
139 List of active sessions:
144 List of active state sessions:
[all …]
Dn414 List of active sessions:
18 List of active state sessions:
45 List of active sessions:
49 List of active state sessions:
76 List of active sessions:
81 List of active state sessions:
108 List of active sessions:
112 List of active state sessions:
139 List of active sessions:
144 List of active state sessions:
[all …]
Dn6_617 List of active sessions:
22 List of active state sessions:
52 List of active sessions:
57 List of active state sessions:
87 List of active sessions:
91 List of active state sessions:
121 List of active sessions:
126 List of active state sessions:
156 List of active sessions:
160 List of active state sessions:
Dn617 List of active sessions:
22 List of active state sessions:
52 List of active sessions:
57 List of active state sessions:
87 List of active sessions:
91 List of active state sessions:
121 List of active sessions:
126 List of active state sessions:
156 List of active sessions:
160 List of active state sessions:
Df1119 List of active sessions:
22 List of active state sessions:
55 List of active sessions:
58 List of active state sessions:
91 List of active sessions:
94 List of active state sessions:
127 List of active sessions:
130 List of active state sessions:
163 List of active sessions:
166 List of active state sessions:
[all …]
Dn106 List of active sessions:
11 List of active state sessions:
30 List of active sessions:
35 List of active state sessions:
54 List of active sessions:
59 List of active state sessions:
Dn713 List of active sessions:
19 List of active state sessions:
45 List of active sessions:
51 List of active state sessions:
77 List of active sessions:
85 List of active state sessions:
Dn7_613 List of active sessions:
19 List of active state sessions:
45 List of active sessions:
51 List of active state sessions:
77 List of active sessions:
85 List of active state sessions:
Dn1812 List of active sessions:
24 List of active state sessions:
49 List of active sessions:
61 List of active state sessions:
86 List of active sessions:
98 List of active state sessions:
Dn223 List of active sessions:
30 List of active state sessions:
66 List of active sessions:
71 List of active state sessions:
107 List of active sessions:
125 List of active state sessions:
161 List of active sessions:
178 List of active state sessions:
Dn2_623 List of active sessions:
30 List of active state sessions:
66 List of active sessions:
71 List of active state sessions:
107 List of active sessions:
125 List of active state sessions:
161 List of active sessions:
178 List of active state sessions:
Dn1120 List of active sessions:
25 List of active state sessions:
58 List of active sessions:
66 List of active state sessions:
99 List of active sessions:
111 List of active state sessions:
Dn11_620 List of active sessions:
25 List of active state sessions:
58 List of active sessions:
66 List of active state sessions:
99 List of active sessions:
111 List of active state sessions:
Dn15_66 List of active sessions:
10 List of active state sessions:
29 List of active sessions:
34 List of active state sessions:
Dn156 List of active sessions:
10 List of active state sessions:
29 List of active sessions:
34 List of active state sessions:
Dn39 List of active sessions:
20 List of active state sessions:
42 List of active sessions:
53 List of active state sessions:
Dn138 List of active sessions:
45 List of active state sessions:
96 List of active sessions:
113 List of active state sessions:
164 List of active sessions:
184 List of active state sessions:
/freebsd-10-stable/sys/crypto/aesni/
Daesni.c53 TAILQ_HEAD(aesni_sessions_head, aesni_session) sessions;
136 TAILQ_INIT(&sc->sessions); in aesni_attach()
171 TAILQ_FOREACH(ses, &sc->sessions, next) { in aesni_detach()
180 while ((ses = TAILQ_FIRST(&sc->sessions)) != NULL) { in aesni_detach()
181 TAILQ_REMOVE(&sc->sessions, ses, next); in aesni_detach()
235 ses = TAILQ_FIRST(&sc->sessions); in aesni_newsession()
244 TAILQ_REMOVE(&sc->sessions, ses, next); in aesni_newsession()
247 TAILQ_INSERT_TAIL(&sc->sessions, ses, next); in aesni_newsession()
271 TAILQ_REMOVE(&sc->sessions, ses, next); in aesni_freesession_locked()
274 TAILQ_INSERT_HEAD(&sc->sessions, ses, next); in aesni_freesession_locked()
[all …]
/freebsd-10-stable/crypto/openssh/regress/
Dputty-kex.sh13 cp ${OBJ}/.putty/sessions/localhost_proxy \
14 ${OBJ}/.putty/sessions/kex_$k
15 echo "KEX=$k" >> ${OBJ}/.putty/sessions/kex_$k
Dputty-ciphers.sh13 cp ${OBJ}/.putty/sessions/localhost_proxy \
14 ${OBJ}/.putty/sessions/cipher_$c
15 echo "Cipher=$c" >> ${OBJ}/.putty/sessions/cipher_$c
Dputty-transfer.sh16 cp ${OBJ}/.putty/sessions/localhost_proxy \
17 ${OBJ}/.putty/sessions/compression_$c
18 echo "Compression=$c" >> ${OBJ}/.putty/sessions/kex_$k

123456