Home
last modified time | relevance | path

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

12

/dragonfly/sys/dev/crypto/aesni/
HDaesni.c48 TAILQ_HEAD(aesni_sessions_head, aesni_session) sessions;
87 TAILQ_INIT(&sc->sessions); in aesni_attach()
109 TAILQ_FOREACH(ses, &sc->sessions, next) { in aesni_detach()
117 while ((ses = TAILQ_FIRST(&sc->sessions)) != NULL) { in aesni_detach()
118 TAILQ_REMOVE(&sc->sessions, ses, next); in aesni_detach()
161 ses = TAILQ_FIRST(&sc->sessions); in aesni_newsession()
184 TAILQ_REMOVE(&sc->sessions, ses, next); in aesni_newsession()
187 TAILQ_INSERT_TAIL(&sc->sessions, ses, next); in aesni_newsession()
209 TAILQ_REMOVE(&sc->sessions, ses, next); in aesni_freesession_locked()
213 TAILQ_INSERT_HEAD(&sc->sessions, ses, next); in aesni_freesession_locked()
[all …]
/dragonfly/sbin/init/
HDinit.c212 static session_t *sessions; variable
1068 sessions = sp; in new_session()
1137 if (sessions == NULL) { in f_read_ttys()
1158 for (sp = sessions; sp; sp = snext) { in f_read_ttys()
1164 sessions = NULL; in f_read_ttys()
1300 if (! sessions) in collect_child()
1314 sessions = sp->se_next; in collect_child()
1385 for (sp = sessions; sp; sp = sp->se_next) { in f_multi_user()
1417 if (! sessions) in f_clean_ttys()
1425 for (sp = sessions; sp != NULL; sp = sp->se_next) in f_clean_ttys()
[all …]
HDNOTES109 6: boring mode (no new sessions); signals as in 4
/dragonfly/crypto/openssh/
HDsession.c159 static Session *sessions = NULL; variable
1717 memset(&sessions[id], 0, sizeof(*sessions)); in session_unused()
1718 sessions[id].self = id; in session_unused()
1719 sessions[id].used = 0; in session_unused()
1720 sessions[id].chanid = -1; in session_unused()
1721 sessions[id].ptyfd = -1; in session_unused()
1722 sessions[id].ttyfd = -1; in session_unused()
1723 sessions[id].ptymaster = -1; in session_unused()
1724 sessions[id].x11_chanids = NULL; in session_unused()
1725 sessions[id].next_unused = sessions_first_unused; in session_unused()
[all …]
HDPROTOCOL227 2.2. connection: disallow additional sessions extension
228 "no-more-sessions@openssh.com"
232 additional sessions under their control. OpenSSH provides a global
233 request "no-more-sessions@openssh.com" to mitigate this attack.
240 string "no-more-sessions@openssh.com"
251 of this message, the no-more-sessions request is only sent to OpenSSH
HDREADME.tun69 ssh tunnel destination over multiple ssh sessions.
HDPROTOCOL.mux23 concurrent sessions. These are supported via two separate modes:
/dragonfly/sys/netgraph7/pptpgre/
HDng_pptpgre.c161 LIST_ENTRY(ng_pptpgre_sess) sessions;
298 LIST_INSERT_HEAD(&priv->sesshash[0], &priv->uppersess, sessions); in ng_pptpgre_constructor()
355 LIST_INSERT_HEAD(&priv->sesshash[hash], hpriv, sessions); in ng_pptpgre_newhook()
391 LIST_REMOVE(hpriv, sessions); in ng_pptpgre_rcvmsg()
394 sessions); in ng_pptpgre_rcvmsg()
496 LIST_REMOVE(hpriv, sessions); in ng_pptpgre_disconnect()
519 LIST_REMOVE(&priv->uppersess, sessions); in ng_pptpgre_shutdown()
934 LIST_FOREACH(hpriv, &privp->sesshash[hash], sessions) { in ng_pptpgre_find_session()
/dragonfly/tools/tools/net80211/wesside/wesside/
HDaircrack-ptw-lib.c227 memcpy(keybuf, state->sessions[i].iv, IVBYTES); in correct()
230 if ((rc4update(&rc4state) ^ state->sessions[i].keystream[j]) != 0) { in correct()
453 memcpy(state->sessions[state->sessions_collected].iv, iv, IVBYTES); in PTW_addsession()
454 … memcpy(state->sessions[state->sessions_collected].keystream, keystream, KSBYTES); in PTW_addsession()
HDaircrack-ptw-lib.h76 PTW_session sessions[PTW_CONTROLSESSIONS]; member
/dragonfly/sys/netgraph7/pppoe/
HDng_pppoe.c237 LIST_ENTRY(sess_con) sessions;
421 LIST_FOREACH(sp, &privp->listeners, sessions) { in pppoe_match_svc()
459 LIST_FOREACH(sp, &privp->listeners, sessions) { in pppoe_broadcast_padi()
482 LIST_FOREACH(sp, &privp->listeners, sessions) { in pppoe_find_svc()
515 LIST_FOREACH(tsp, &privp->sesshash[hash].head, sessions) { in pppoe_getnewsession()
521 LIST_INSERT_HEAD(&privp->sesshash[hash].head, sp, sessions); in pppoe_getnewsession()
540 LIST_INSERT_HEAD(&privp->sesshash[hash].head, sp, sessions); in pppoe_addsession()
552 LIST_REMOVE(sp, sessions); in pppoe_delsession()
565 LIST_FOREACH(sp, &privp->sesshash[hash].head, sessions) { in pppoe_findsession()
891 LIST_INSERT_HEAD(&privp->listeners, sp, sessions); in ng_pppoe_rcvmsg()
[all …]
/dragonfly/crypto/libressl/ssl/
HDssl_sess.c446 sess = lh_SSL_SESSION_retrieve(s->session_ctx->internal->sessions, &data); in ssl_session_from_cache()
658 s = lh_SSL_SESSION_insert(ctx->internal->sessions, c); in SSL_CTX_add_session()
731 if ((r = lh_SSL_SESSION_retrieve(ctx->internal->sessions, c)) == c) { in remove_session_lock()
733 r = lh_SSL_SESSION_delete(ctx->internal->sessions, c); in remove_session_lock()
1029 tp.cache = s->internal->sessions; in SSL_CTX_flush_sessions()
HDssl_lib.c429 p = lh_SSL_SESSION_retrieve(ssl->ctx->internal->sessions, &r); in SSL_has_matching_session_id()
1340 return (ctx->internal->sessions); in SSL_CTX_sessions()
1381 return (lh_SSL_SESSION_num_items(ctx->internal->sessions)); in SSL_CTX_ctrl()
2023 ret->internal->sessions = lh_SSL_SESSION_new(); in SSL_CTX_new()
2024 if (ret->internal->sessions == NULL) in SSL_CTX_new()
2119 if (ctx->internal->sessions != NULL) in SSL_CTX_free()
2124 lh_SSL_SESSION_free(ctx->internal->sessions); in SSL_CTX_free()
HDssl_locl.h782 struct lhash_st_SSL_SESSION *sessions; member
/dragonfly/contrib/wpa_supplicant/src/radius/
HDradius_server.c116 struct radius_session *sessions; member
516 struct radius_session *sess = client->sessions; in radius_server_get_session()
554 session = client->sessions; in radius_server_session_remove()
558 client->sessions = sess->next; in radius_server_session_remove()
610 sess->next = client->sessions; in radius_server_new_session()
611 client->sessions = sess; in radius_server_new_session()
2155 struct radius_session *sessions) in radius_server_free_sessions() argument
2159 session = sessions; in radius_server_free_sessions()
2178 radius_server_free_sessions(data, prev->sessions); in radius_server_free_clients()
2808 for (s = cli->sessions; s; s = s->next) { in radius_server_eap_pending_cb()
/dragonfly/usr.sbin/ftp-proxy/
HDftp-proxy.c91 LIST_HEAD(, session) sessions = LIST_HEAD_INITIALIZER(sessions);
372 LIST_FOREACH_MUTABLE(s, &sessions, entry, tmp) { in exit_daemon()
586 LIST_INSERT_HEAD(&sessions, s, entry); in init_session()
/dragonfly/sys/netgraph7/l2tp/
HDng_l2tp.c113 LIST_ENTRY(ng_l2tp_hook_private) sessions;
439 LIST_INSERT_HEAD(&priv->sesshash[hash], hpriv, sessions); in ng_l2tp_newhook()
707 LIST_REMOVE(hpriv, sessions); in ng_l2tp_disconnect()
731 LIST_FOREACH(hpriv, &privp->sesshash[hash], sessions) { in ng_l2tp_find_session()
/dragonfly/sys/dev/disk/iscsi/initiator/
HDisc_cam.c211 sp = isp->sessions[ccb_h->target_id]; in ic_action()
HDiscsi.c628 if(sc->sessions[n] == NULL) in i_create_session()
639 sc->sessions[n] = sp; in i_create_session()
HDiscsivar.h203 isc_session_t *sessions[MAX_SESSIONS]; member
HDisc_sm.c772 sc->sessions[sp->sid] = NULL; in ism_stop()
/dragonfly/contrib/cryptsetup/
HDChangeLog517 * src/cryptsetup.c (action_luksFormat): Add "are you sure" for interactive sessions.
/dragonfly/contrib/wpa_supplicant/wpa_supplicant/
HDChangeLog844 allow it to persist over multiple EAP sessions and wpa_supplicant
1692 * fixed EAPOL re-authentication for sessions that used PMKSA caching
/dragonfly/games/fortune/datfiles/
HDmurphy1464 working in "only a few" 30-hour debugging sessions.
/dragonfly/share/termcap/
HDtermcap.src2765 # four independent sessions in the terminal. It has multiple ANSI

12