| Kernel v2.3.99-pre7 /net/protocols.c |
|---|
 2.3.99-pre7
 net
 protocols.c
diff -u --recursive --new-file v2.3.99-pre6/linux/net/protocols.c linux/net/protocols.c
--- v2.3.99-pre6/linux/net/protocols.c Thu Aug 26 13:05:46 1999
+++ linux/net/protocols.c Mon May 8 22:21:58 2000
@@ -100,6 +100,11 @@
#include <net/p8022call.h>
#endif
+
+#ifdef CONFIG_PPPOE
+#include <linux/if_pppox.h>
+#endif
+
/*
* Protocol Table
*/
@@ -177,6 +182,8 @@
#ifdef CONFIG_IRDA
{ "IrDA", irda_proto_init }, /* IrDA protocols */
#endif
-
+#ifdef CONFIG_PPPOE
+ { "PPPoX", pppox_proto_init }, /* PPP over Ethernet */
+#endif
{ NULL, NULL } /* End marker */
};
|