Searched refs:passwd (Results 1 – 4 of 4) sorted by relevance
/lk-master/external/lib/lwip/netif/ppp/ |
A D | auth.c | 271 { "password", o_string, passwd, 316 l = strlen(passwd); 317 if (l > 0 && passwd[l-1] == '\n') 318 passwd[l-1] = 0; 876 char passwd[256], user[256]; in check_passwd() 884 passwd[passwdlen] = '\0'; in check_passwd() 924 BZERO(passwd, sizeof(passwd)); in check_passwd() 961 LWIP_UNUSED_ARG(passwd); 1033 if(passwd) { in get_pap_passwd() 1034 strcpy(passwd, "none"); in get_pap_passwd() [all …]
|
A D | ppp.h | 130 void pppSetAuth(enum pppAuthType authType, const char *user, const char *passwd);
|
A D | ppp.c | 461 pppSetAuth(enum pppAuthType authType, const char *user, const char *passwd) in pppSetAuth() argument 517 if(passwd) { in pppSetAuth() 518 strncpy(ppp_settings.passwd, passwd, sizeof(ppp_settings.passwd)-1); in pppSetAuth() 519 ppp_settings.passwd[sizeof(ppp_settings.passwd)-1] = '\0'; in pppSetAuth() 521 ppp_settings.passwd[0] = '\0'; in pppSetAuth()
|
A D | ppp_impl.h | 297 char passwd [MAXSECRETLEN + 1]; /* Password for PAP, secret for CHAP */ member
|
Completed in 9 milliseconds