Lines Matching refs:psk_identity
384 const coap_bin_const_t *psk_identity;
428 psk_identity = &cpsk_info->identity;
432 psk_identity = NULL;
435 psk_identity = coap_get_session_client_psk_identity(coap_session);
437 if (psk_identity == NULL) {
442 if (psk_identity->length > result_length) {
443 coap_log_warn("psk_identity too large, truncated to %zd bytes\n",
447 result_length = psk_identity->length;
449 memcpy(result, psk_identity->s, result_length);
486 coap_log_debug("got psk_identity: '%.*s'\n",