Lines Matching defs:challenge
784 const char *challenge;
941 challenge = iscsi_param_get_val(params, "CHAP_C");
942 if (challenge == NULL) {
946 if (challenge[0] == '0' &&
947 (challenge[1] == 'x' || challenge[1] == 'X')) {
949 ISCSI_CHAP_CHALLENGE_LEN, challenge);
951 SPDK_ERRLOG("challenge format error\n");
955 } else if (challenge[0] == '0' &&
956 (challenge[1] == 'b' || challenge[1] == 'B')) {
957 challenge += 2;
959 &decoded_len, challenge);
961 SPDK_ERRLOG("challenge format error\n");
966 SPDK_ERRLOG("challenge format error\n");