Home | History | Annotate | Download | only in src

Lines Matching full:radius

61 #include "radius.h"
434 struct radius *r = &fp->bundle->radius;
437 * If the radius server gave us RAD_MICROSOFT_MS_MPPE_ENCRYPTION_TYPES,
443 log_Printf(LogCCP, "MPPE: Not permitted by RADIUS server\n");
462 * If the radius server gave us RAD_MICROSOFT_MS_MPPE_ENCRYPTION_POLICY,
465 if (*fp->bundle->radius.cfg.file && fp->bundle->radius.mppe.policy)
466 return fp->bundle->radius.mppe.policy == MPPE_POLICY_REQUIRED ? 1 : 0;
480 * If the radius server gave us RAD_MICROSOFT_MS_MPPE_ENCRYPTION_TYPES,
483 if (*bundle->radius.cfg.file && bundle->radius.mppe.types) {
484 if (bundle->radius.mppe.types & MPPE_TYPE_40BIT)
486 if (bundle->radius.mppe.types & MPPE_TYPE_128BIT)
696 if (*bundle->radius.cfg.file && bundle->radius.mppe.recvkey) {
697 if (mip->keylen > bundle->radius.mppe.recvkeylen)
698 mip->keylen = bundle->radius.mppe.recvkeylen;
701 memcpy(mip->mastkey, bundle->radius.mppe.recvkey, mip->keylen);
752 if (*bundle->radius.cfg.file && bundle->radius.mppe.sendkey) {
753 if (mop->keylen > bundle->radius.mppe.sendkeylen)
754 mop->keylen = bundle->radius.mppe.sendkeylen;
757 memcpy(mop->mastkey, bundle->radius.mppe.sendkey, mop->keylen);