Home
last modified time | relevance | path

Searched refs:name_len (Results 1 – 1 of 1) sorted by relevance

/lib/liblwip/src/netif/ppp/
Dchap.c713 int chal_len, name_len; in ChapSendChallenge() local
717 name_len = (int)strlen(cstate->chal_name); in ChapSendChallenge()
718 outlen = CHAP_HEADERLEN + sizeof (u_char) + chal_len + name_len; in ChapSendChallenge()
731 BCOPY(cstate->chal_name, outp, name_len); /* append hostname */ in ChapSendChallenge()
814 int outlen, md_len, name_len; in ChapSendResponse() local
817 name_len = (int)strlen(cstate->resp_name); in ChapSendResponse()
818 outlen = CHAP_HEADERLEN + sizeof (u_char) + md_len + name_len; in ChapSendResponse()
831 BCOPY(cstate->resp_name, outp, name_len); /* append our name */ in ChapSendResponse()