spr 77 dev/sbus/vigra.c u_int32_t spr;
spr 4120 net/if_spppsubr.c struct spppreq spr;
spr 4122 net/if_spppsubr.c if (copyin((caddr_t)ifr->ifr_data, &spr, sizeof spr) != 0)
spr 4125 net/if_spppsubr.c switch (spr.cmd) {
spr 4136 net/if_spppsubr.c bcopy(sp, &spr.defs, sizeof(struct sppp));
spr 4137 net/if_spppsubr.c bzero(spr.defs.myauth.secret, AUTHKEYLEN);
spr 4138 net/if_spppsubr.c bzero(spr.defs.myauth.challenge, AUTHKEYLEN);
spr 4139 net/if_spppsubr.c bzero(spr.defs.hisauth.secret, AUTHKEYLEN);
spr 4140 net/if_spppsubr.c bzero(spr.defs.hisauth.challenge, AUTHKEYLEN);
spr 4141 net/if_spppsubr.c return copyout(&spr, (caddr_t)ifr->ifr_data, sizeof spr);
spr 4173 net/if_spppsubr.c if ((spr.defs.myauth.proto != 0 && spr.defs.myauth.proto != PPP_PAP &&
spr 4174 net/if_spppsubr.c spr.defs.myauth.proto != PPP_CHAP) ||
spr 4175 net/if_spppsubr.c (spr.defs.hisauth.proto != 0 && spr.defs.hisauth.proto != PPP_PAP &&
spr 4176 net/if_spppsubr.c spr.defs.hisauth.proto != PPP_CHAP))
spr 4179 net/if_spppsubr.c if (spr.defs.myauth.proto == 0)
spr 4184 net/if_spppsubr.c sp->myauth.proto = spr.defs.myauth.proto;
spr 4185 net/if_spppsubr.c bcopy(spr.defs.myauth.name, sp->myauth.name, AUTHNAMELEN);
spr 4186 net/if_spppsubr.c if (spr.defs.myauth.secret[0] != '\0')
spr 4187 net/if_spppsubr.c bcopy(spr.defs.myauth.secret, sp->myauth.secret,
spr 4190 net/if_spppsubr.c if (spr.defs.hisauth.proto == 0)
spr 4195 net/if_spppsubr.c sp->hisauth.proto = spr.defs.hisauth.proto;
spr 4196 net/if_spppsubr.c sp->hisauth.flags = spr.defs.hisauth.flags;
spr 4197 net/if_spppsubr.c bcopy(spr.defs.hisauth.name, sp->hisauth.name, AUTHNAMELEN);
spr 4198 net/if_spppsubr.c if (spr.defs.hisauth.secret[0] != '\0')
spr 4199 net/if_spppsubr.c bcopy(spr.defs.hisauth.secret, sp->hisauth.secret,