Home | History | Annotate | Download | only in pppd

Lines Matching refs:protocol

2  * main.c - Point-to-Point Protocol main module
277 * PPP Data Link Layer "protocol" table.
278 * One entry per supported protocol.
353 * Initialize each protocol.
582 lcp_open(0); /* Start protocol */
918 /* List of protocol names, to make our messages a little more informative. */
932 { 0x33, "Stream Protocol ST-II" },
942 { 0x49, "Serial Data Transport Protocol (PPP-SDTP)" },
954 { 0x8021, "Internet Protocol Control Protocol" },
955 { 0x8023, "OSI Network Layer Control Protocol" },
956 { 0x8025, "Xerox NS IDP Control Protocol" },
957 { 0x8027, "DECnet Phase IV Control Protocol" },
958 { 0x8029, "Appletalk Control Protocol" },
959 { 0x802b, "Novell IPX Control Protocol" },
961 { 0x8033, "Stream Protocol Control Protocol" },
962 { 0x8035, "Banyan Vines Control Protocol" },
963 { 0x803d, "Multi-Link Control Protocol" },
964 { 0x803f, "NETBIOS Framing Control Protocol" },
965 { 0x8041, "Cisco Systems Control Protocol" },
967 { 0x8045, "Fujitsu LBLB Control Protocol" },
968 { 0x8047, "DCA Remote Lan Network Control Protocol (RLNCP)" },
969 { 0x8049, "Serial Data Control Protocol (PPP-SDCP)" },
970 { 0x804b, "SNA over 802.2 Control Protocol" },
971 { 0x804d, "SNA Control Protocol" },
972 { 0x804f, "IP6 Header Compression Control Protocol" },
973 { 0x006f, "Stampede Bridging Control Protocol" },
974 { 0x80fb, "Single Link Compression Control Protocol" },
975 { 0x80fd, "Compression Control Protocol" },
976 { 0xc021, "Link Control Protocol" },
977 { 0xc023, "Password Authentication Protocol" },
979 { 0xc027, "Shiva Password Authentication Protocol" },
980 { 0xc029, "CallBack Control Protocol (CBCP)" },
981 { 0xc081, "Container Control Protocol" },
982 { 0xc223, "Challenge Handshake Authentication Protocol" },
983 { 0xc281, "Proprietary Authentication Protocol" },
988 * protocol_name - find a name for a PPP protocol.
1010 u_short protocol;
1042 GETSHORT(protocol, p);
1048 if (protocol != PPP_LCP && lcp_fsm[0].state != OPENED) {
1058 && !(protocol == PPP_LCP || protocol == PPP_LQR
1059 || protocol == PPP_PAP || protocol == PPP_CHAP ||
1060 protocol == PPP_EAP)) {
1062 protocol, phase);
1067 * Upcall the proper protocol input routine.
1070 if (protp->protocol == protocol && protp->enabled_flag) {
1074 if (protocol == (protp->protocol & ~0x8000) && protp->enabled_flag
1082 const char *pname = protocol_name(protocol);
1084 warn("Unsupported protocol '%s' (0x%x) received", pname, protocol);
1086 warn("Unsupported protocol 0x%x received", protocol);