Lines Matching defs:context
60 static int sv_body(int s, int stype, int prot, unsigned char *context);
61 static int www_body(int s, int stype, int prot, unsigned char *context);
62 static int rev_body(int s, int stype, int prot, unsigned char *context);
409 /* This is a context that we pass to callbacks */
439 BIO_printf(p->biodebug, "Switching server context.\n");
627 /* This is the context that we pass to next_proto_cb */
645 /* This the context that we pass to alpn_cb */
753 {"context", OPT_CONTEXT, 's', "Set session ID context"},
1011 unsigned char *context = NULL;
1192 context = (unsigned char *)opt_arg();
2126 BIO_printf(bio_err, "error setting PSK identity hint to context\n");
2158 BIO_printf(bio_err, "error setting session id context\n");
2176 BIO_printf(bio_err, "error setting session id context\n");
2230 server_cb, context, naccept, bio_s_out);
2326 static int sv_body(int s, int stype, int prot, unsigned char *context)
2366 if (context != NULL
2367 && !SSL_set_session_id_context(con, context,
2368 strlen((char *)context))) {
2369 BIO_printf(bio_err, "Error setting session id context\n");
3033 static int www_body(int s, int stype, int prot, unsigned char *context)
3084 if (context != NULL
3085 && !SSL_set_session_id_context(con, context,
3086 strlen((char *)context))) {
3489 static int rev_body(int s, int stype, int prot, unsigned char *context)
3519 if (context != NULL
3520 && !SSL_set_session_id_context(con, context,
3521 strlen((char *)context))) {