HomeSort by: relevance | last modified time | path
    Searched refs:session (Results 1 - 25 of 415) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_sasl_proto.c 32 /* Session context.
87 void smtp_sasl_helo_auth(SMTP_SESSION *session, const char *words)
99 if (session->sasl_mechanism_list) {
100 if (strcasecmp(session->sasl_mechanism_list, mech_list) != 0
102 && strlen(session->sasl_mechanism_list) < var_line_limit) {
103 junk = concatenate(session->sasl_mechanism_list, " ", mech_list,
105 myfree(session->sasl_mechanism_list);
106 session->sasl_mechanism_list = junk;
111 session->sasl_mechanism_list = mystrdup(mech_list);
115 session->namaddrport, words)
124 SMTP_SESSION *session = state->session; local
    [all...]
smtp_sasl_glue.c 13 /* void smtp_sasl_connect(session)
14 /* SMTP_SESSION *session;
16 /* void smtp_sasl_start(session, sasl_opts_name, sasl_opts_val)
17 /* SMTP_SESSION *session;
19 /* int smtp_sasl_passwd_lookup(session)
20 /* SMTP_SESSION *session;
22 /* int smtp_sasl_authenticate(session, why)
23 /* SMTP_SESSION *session;
26 /* void smtp_sasl_cleanup(session)
27 /* SMTP_SESSION *session;
    [all...]
smtp_session.c 17 /* void smtp_session_free(session)
18 /* SMTP_SESSION *session;
20 /* int smtp_session_passivate(session, dest_prop, endp_prop)
21 /* SMTP_SESSION *session;
41 /* smtp_session_passivate() flattens an SMTP session (including
45 /* smtp_session_activate() inflates a flattened SMTP session
70 /* Destination specific session properties: the server is the
78 /* Endpoint specific session properties: all the features
147 SMTP_SESSION *session; local
152 session = (SMTP_SESSION *) mymalloc(sizeof(*session))
334 SMTP_SESSION *session; local
    [all...]
smtp_chat.c 21 /* void smtp_chat_cmd(session, format, ...)
22 /* SMTP_SESSION *session;
27 /* SMTP_RESP *smtp_chat_resp(session)
28 /* SMTP_SESSION *session;
30 /* void smtp_chat_notify(session)
31 /* SMTP_SESSION *session;
33 /* void smtp_chat_init(session)
34 /* SMTP_SESSION *session;
36 /* void smtp_chat_reset(session)
37 /* SMTP_SESSION *session;
    [all...]
smtp_reuse.c 7 /* SMTP session cache glue
26 /* the generic session cache infrastructure.
32 /* smtp_save_session() stores the current session under the
37 /* smtp_reuse_nexthop() looks up a cached session by its
39 /* the session is still alive. The restored session information
43 /* smtp_reuse_addr() looks up a cached session by its server
44 /* address, and verifies that the session is still alive.
45 /* The restored session information does not include the "best
51 /* SMTP client state, including the current session, the origina
116 SMTP_SESSION *session = state->session; local
175 SMTP_SESSION *session; local
222 SMTP_SESSION *session; local
249 SMTP_SESSION *session; local
    [all...]
smtp_proto.c 173 * Sender and receiver state. A session does not necessarily go through a
185 * and with its own dedicated state transitions. The session proceeds as
255 #define SMTP_MIME_DOWNGRADE(session, request) \
257 && (session->features & SMTP_FEATURE_8BITMIME) == 0 \
301 SMTP_SESSION *session = state->session; local
333 int saved_features = session->features;
345 /* XXX Mix-up of per-session and per-request flags. */
347 smtp_stream_setup(state->session->stream, var_smtp_starttls_tmout,
358 smtp_stream_setup(state->session->stream, var_smtp_helo_tmout
882 SMTP_SESSION *session = state->session; local
1243 SMTP_SESSION *session = state->session; local
1485 SMTP_SESSION *session = state->session; local
1509 SMTP_SESSION *session = state->session; local
1547 SMTP_SESSION *session = state->session; local
2492 SMTP_SESSION *session = state->session; local
    [all...]
smtp_trouble.c 59 /* a transcript of the session. No notification is generated for
82 /* The session is marked as "do not cache".
117 /* Retry plaintext delivery after TLS post-handshake session
121 /* The session is marked as "do not cache".
188 static void smtp_check_code(SMTP_SESSION *session, int code)
201 * Fix 20190621: don't cache an SMTP session after an SMTP protocol error.
208 session->error_mask |= MAIL_ERROR_PROTOCOL;
218 SMTP_SESSION *session = state->session; local
275 session ? session->namaddrport : "none", &why->dsn)
332 SMTP_SESSION *session = state->session; local
374 SMTP_SESSION *session = state->session; local
435 SMTP_SESSION *session = state->session; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/ssl-tests/
27-ticket-appdata.conf 5 test-0 = 0-session-ticket-app-data12
6 test-1 = 1-session-ticket-app-data12
7 test-2 = 2-session-ticket-app-data13
8 test-3 = 3-session-ticket-app-data13
11 [0-session-ticket-app-data12]
12 ssl_conf = 0-session-ticket-app-data12-ssl
14 [0-session-ticket-app-data12-ssl]
15 server = 0-session-ticket-app-data12-server
16 client = 0-session-ticket-app-data12-client
17 resume-server = 0-session-ticket-app-data12-serve
    [all...]
06-sni-ticket.conf 5 test-0 = 0-sni-session-ticket
6 test-1 = 1-sni-session-ticket
7 test-2 = 2-sni-session-ticket
8 test-3 = 3-sni-session-ticket
9 test-4 = 4-sni-session-ticket
10 test-5 = 5-sni-session-ticket
11 test-6 = 6-sni-session-ticket
12 test-7 = 7-sni-session-ticket
13 test-8 = 8-sni-session-ticket
14 test-9 = 9-sni-session-ticke
    [all...]
  /src/external/bsd/openldap/dist/libraries/librewrite/
session.c 1 /* $NetBSD: session.c,v 1.8 2025/09/05 21:16:23 christos Exp $ */
74 * Inits a session
82 struct rewrite_session *session, tmp; local
93 session = ( struct rewrite_session * )ldap_avl_find( info->li_cookies,
95 if ( session ) {
96 session->ls_count++;
100 return session;
103 session = calloc( sizeof( struct rewrite_session ), 1 );
104 if ( session == NULL ) {
110 session->ls_cookie = ( void * )cookie
157 struct rewrite_session *session, tmp; local
207 struct rewrite_session *session; local
268 struct rewrite_session *session; local
315 struct rewrite_session *session = (struct rewrite_session *)v_session; local
334 struct rewrite_session *session = (struct rewrite_session *)v_session; local
352 struct rewrite_session *session, tmp = { 0 }; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/smtpstone/
smtp-source.c 182 * Per-session data structure with state.
190 typedef struct SESSION {
191 int xfer_count; /* # of xfers in session */
198 struct SESSION *next; /* connect() queue linkage */
199 } SESSION;
201 static SESSION *last_session; /* connect() queue tail */
248 static void enqueue_connect(SESSION *);
249 static void start_connect(SESSION *);
252 static void send_helo(SESSION *);
254 static void send_mail(SESSION *);
424 SESSION *session = (SESSION *) context; local
524 SESSION *session = (SESSION *) context; local
553 SESSION *session = (SESSION *) context; local
608 SESSION *session = (SESSION *) context; local
658 SESSION *session = (SESSION *) context; local
689 SESSION *session = (SESSION *) context; local
718 SESSION *session = (SESSION *) context; local
755 SESSION *session = (SESSION *) context; local
775 SESSION *session = (SESSION *) context; local
867 SESSION *session = (SESSION *) context; local
906 SESSION *session = (SESSION *) context; local
916 SESSION *session = (SESSION *) context; local
960 SESSION *session = (SESSION *) context; local
992 SESSION *session; local
    [all...]
qmqp-source.c 125 * Per-session data structure with state.
133 typedef struct SESSION {
134 int xfer_count; /* # of xfers in session */
139 struct SESSION *next; /* connect() queue linkage */
140 } SESSION;
142 static SESSION *last_session; /* connect() queue tail */
169 static void enqueue_connect(SESSION *);
170 static void start_connect(SESSION *);
173 static void send_data(SESSION *);
241 static void startup(SESSION *session
255 SESSION *session = (SESSION *) context; local
353 SESSION *session = (SESSION *) context; local
414 SESSION *session = (SESSION *) context; local
466 SESSION *session; local
    [all...]
  /src/sys/sys/
tprintf.h 37 typedef struct session *tpr_t;
  /src/crypto/dist/ipsec-tools/src/racoon/
session.h 1 /* $NetBSD: session.h,v 1.10 2025/03/07 15:55:29 christos Exp $ */
3 /* Id: session.h,v 1.3 2004/06/11 16:00:17 ludvigm Exp */
37 extern int session(void);
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
interrupt-daemon.c 35 create a session. Fork so the child can create a new
36 session. */
44 /* In child. Switch to a new session. */
45 pid_t session = setsid (); local
46 if (session == -1)
51 it's not a session leader. We're not opening any file here,
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
interrupt-daemon.c 35 create a session. Fork so the child can create a new
36 session. */
44 /* In child. Switch to a new session. */
45 pid_t session = setsid (); local
46 if (session == -1)
51 it's not a session leader. We're not opening any file here,
  /src/crypto/external/apache2/openssl/dist/test/recipes/
70-test_tlsextms.t 70 # Test 3: same as 1 but with session tickets disabled.
79 # Test 4: same as 2 but with session tickets disabled.
88 #Test 5: Session resumption extended master secret test
95 (undef, my $session) = tempfile();
97 $proxy->clientflags("-no_tls1_3 -sess_out ".$session);
100 $proxy->clientflags("-no_tls1_3 -sess_in ".$session);
102 checkmessages(5, "Session resumption extended master secret test", 1, 1, 0);
103 unlink $session;
105 #Test 6: Session resumption extended master secret test original session
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/recipes/
70-test_tlsextms.t 72 # Test 3: same as 1 but with session tickets disabled.
81 # Test 4: same as 2 but with session tickets disabled.
90 #Test 5: Session resumption extended master secret test
97 (undef, my $session) = tempfile();
99 $proxy->clientflags("-no_tls1_3 -sess_out ".$session);
102 $proxy->clientflags("-no_tls1_3 -sess_in ".$session);
104 checkmessages(5, "Session resumption extended master secret test", 1, 1, 0);
105 unlink $session;
107 #Test 6: Session resumption extended master secret test original session
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/recipes/
70-test_tlsextms.t 74 # Test 3: same as 1 but with session tickets disabled.
83 # Test 4: same as 2 but with session tickets disabled.
92 #Test 5: Session resumption extended master secret test
99 (undef, my $session) = tempfile();
101 $proxy->clientflags("-no_tls1_3 -sess_out ".$session);
104 $proxy->clientflags("-no_tls1_3 -sess_in ".$session);
106 checkmessages(5, "Session resumption extended master secret test", 1, 1, 0);
107 unlink $session;
109 #Test 6: Session resumption extended master secret test original session
    [all...]
  /src/external/mpl/bind/dist/lib/isc/netmgr/
http.c 223 isc_nm_http_session_t *session; member in struct:isc_http_send_req
240 http_send_outgoing(isc_nm_http_session_t *session, isc_nmhandle_t *httphandle,
244 http_log_flooding_peer(isc_nm_http_session_t *session);
247 http_is_flooding_peer(isc_nm_http_session_t *session);
250 http_process_input_data(isc_nm_http_session_t *session,
254 http_too_many_active_streams(isc_nm_http_session_t *session);
257 http_do_bio(isc_nm_http_session_t *session, isc_nmhandle_t *send_httphandle,
261 http_do_bio_async(isc_nm_http_session_t *session);
265 isc_nm_http_session_t *session);
268 client_call_failed_read_cb(isc_result_t result, isc_nm_http_session_t *session);
355 isc_nm_http_session_t *session = NULL; local
385 isc_nm_http_session_t *session = NULL; local
676 isc_nm_http_session_t *session = (isc_nm_http_session_t *)user_data; local
775 isc_nm_http_session_t *session = (isc_nm_http_session_t *)user_data; local
848 isc_nm_http_session_t *session = (isc_nm_http_session_t *)user_data; local
958 isc_nm_http_session_t *session = (isc_nm_http_session_t *)user_data; local
1258 isc_nm_http_session_t *session = (isc_nm_http_session_t *)data; local
1329 isc_nm_http_session_t *session = req->session; local
1727 isc_nm_http_session_t *session = arg; local
1809 isc_nm_http_session_t *session = NULL; local
2010 isc_nm_http_session_t *session = sock->h2->session; local
2122 isc_nm_http_session_t *session = (isc_nm_http_session_t *)user_data; local
2384 isc_nm_http_session_t *session = (isc_nm_http_session_t *)user_data; local
2778 isc_nm_http_session_t *session = sock->h2->session; local
2790 isc_nm_http_session_t *session = NULL; local
2919 isc_nm_http_session_t *session = NULL; local
3155 isc_nm_http_session_t *session = NULL; local
3318 isc_nm_http_session_t *session; local
3335 isc_nm_http_session_t *session; local
3356 isc_nm_http_session_t *session; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/tls/
tls_session.c 7 /* TLS client and server session routines
18 /* VSTRING *tls_session_passivate(session)
19 /* SSL_SESSION *session;
106 * sufficient session termination signaling, then there's no need to
119 * SSL_shutdown() again. On failure we don't want to resume the session,
120 * so we will not perform SSL_shutdown() and the session will be removed
134 VSTRING *tls_session_passivate(SSL_SESSION *session)
146 estimate = i2d_SSL_SESSION(session, (unsigned char **) 0);
148 msg_warn("%s: i2d_SSL_SESSION failed: unable to cache session", myname);
158 actual_size = i2d_SSL_SESSION(session, &ptr)
173 SSL_SESSION *session; local
    [all...]
  /src/crypto/external/bsd/openssh/libexec/
Makefile 5 SUBDIR= sshd-auth sshd-session
  /src/crypto/external/bsd/openssh/dist/
sshd-debug.sh 6 # work-in-progress versions of sshd-auth and sshd-session, instead
39 for i in sshd-session/obj/sshd-session sshd-session/sshd-session sshd-session; do
44 [ -z "${SSHD_SESSION}" ] && fatal "Could not find sshd-session"
46 echo >&2 Debugging ${SSHD} auth ${SSHD_AUTH} session ${SSHD_SESSION}
  /src/external/bsd/tmux/dist/
control-notify.c 46 struct session *s;
55 if (!CONTROL_SHOULD_NOTIFY_CLIENT(c) || c->session == NULL)
57 s = c->session;
94 control_notify_window_unlinked(__unused struct session *s, struct window *w)
97 struct session *cs;
100 if (!CONTROL_SHOULD_NOTIFY_CLIENT(c) || c->session == NULL)
102 cs = c->session;
112 control_notify_window_linked(__unused struct session *s, struct window *w)
115 struct session *cs;
118 if (!CONTROL_SHOULD_NOTIFY_CLIENT(c) || c->session == NULL
    [all...]
server-fn.c 31 static void server_destroy_session_group(struct session *);
46 server_redraw_session(struct session *s)
51 if (c->session == s)
57 server_redraw_session_group(struct session *s)
70 server_status_session(struct session *s)
75 if (c->session == s)
81 server_status_session_group(struct session *s)
99 if (c->session != NULL && c->session->curw->window == w)
110 if (c->session != NULL && c->session->curw->window == w
    [all...]

Completed in 41 milliseconds

1 2 3 4 5 6 7 8 91011>>