Home | History | Annotate | Download | only in ppp

Lines Matching refs:protocol

422     if (protp->protocol != PPP_LCP && protp->lowerdown != NULL) {
425 if (protp->protocol < 0xC000 && protp->close != NULL) {
459 if (protp->protocol != PPP_LCP && protp->enabled_flag && protp->lowerup != NULL) {
552 if (protp->protocol < 0xC000 && protp->enabled_flag && protp->open != NULL) {
554 if (protp->protocol != PPP_CCP) {
568 * The peer has failed to authenticate himself using `protocol'.
571 auth_peer_fail(int unit, u16_t protocol)
573 LWIP_UNUSED_ARG(protocol);
575 AUTHDEBUG(LOG_INFO, ("auth_peer_fail: %d proto=%X\n", unit, protocol));
585 * The peer has been successfully authenticated using `protocol'.
588 auth_peer_success(int unit, u16_t protocol, char *name, int namelen)
592 AUTHDEBUG(LOG_INFO, ("auth_peer_success: %d proto=%X\n", unit, protocol));
593 switch (protocol) {
601 AUTHDEBUG(LOG_WARNING, ("auth_peer_success: unknown protocol %x\n", protocol));
624 * We have failed to authenticate ourselves to the peer using `protocol'.
627 auth_withpeer_fail(int unit, u16_t protocol)
631 LWIP_UNUSED_ARG(protocol);
633 AUTHDEBUG(LOG_INFO, ("auth_withpeer_fail: %d proto=%X\n", unit, protocol));
648 * We have successfully authenticated ourselves with the peer using `protocol'.
651 auth_withpeer_success(int unit, u16_t protocol)
655 AUTHDEBUG(LOG_INFO, ("auth_withpeer_success: %d proto=%X\n", unit, protocol));
656 switch (protocol) {
667 AUTHDEBUG(LOG_WARNING, ("auth_peer_success: unknown protocol %x\n", protocol));
683 * np_up - a network protocol has come up.
713 * np_down - a network protocol has gone down.
728 * np_finished - a network protocol has finished using the link.