/* * Protocol initializer table. Here separately for convenience * */ #include #include #include #include #include #define CONFIG_UNIX /* always present... */ #ifdef CONFIG_UNIX #include #include #endif #ifdef CONFIG_INET #include #ifdef CONFIG_IPV6 extern void inet6_proto_init(struct net_proto *pro); #endif #endif /* INET */ #if defined(CONFIG_IPX) || defined(CONFIG_IPX_MODULE) #define NEED_802 #include #endif #ifdef CONFIG_X25 #include #endif #ifdef CONFIG_LAPB #include #endif #ifdef CONFIG_AX25 #include #ifdef CONFIG_NETROM #include #endif #ifdef CONFIG_ROSE #include #endif #endif #if defined(CONFIG_DECNET) #include #endif #if defined(CONFIG_ATALK) || defined(CONFIG_ATALK_MODULE) #define NEED_802 #include #endif #if defined(CONFIG_NETBEUI) #define NEED_LLC #include #endif #include #ifdef CONFIG_TR #include #include extern void rif_init(struct net_proto *); #endif #ifdef NEED_LLC #define NEED_802 #include #endif #ifdef NEED_802 #include #include #endif /* * Protocol Table */ struct net_proto protocols[] = { #ifdef CONFIG_UNIX { "UNIX", unix_proto_init }, /* Unix domain socket family */ #endif #ifdef NEED_802 { "802.2", p8022_proto_init }, /* 802.2 demultiplexor */ { "802.2TR", p8022tr_proto_init }, /* 802.2 demultiplexor */ { "SNAP", snap_proto_init }, /* SNAP demultiplexor */ #endif #ifdef CONFIG_TR { "RIF", rif_init }, /* RIF for Token ring */ #endif #ifdef NEED_LLC { "802.2LLC", llc_init }, /* 802.2 LLC */ #endif #ifdef CONFIG_AX25 { "AX.25", ax25_proto_init }, /* Amateur Radio AX.25 */ #ifdef CONFIG_NETROM { "NET/ROM", nr_proto_init }, /* Amateur Radio NET/ROM */ #endif #ifdef CONFIG_ROSE { "Rose", rose_proto_init }, /* Amateur Radio X.25 PLP */ #endif #endif #ifdef CONFIG_DECNET { "DECnet", decnet_proto_init }, /* DECnet */ #endif #ifdef CONFIG_INET { "INET", inet_proto_init }, /* TCP/IP */ #ifdef CONFIG_IPV6 { "INET6", inet6_proto_init}, /* IPv6 */ #endif #endif #ifdef CONFIG_IPX { "IPX", ipx_proto_init }, /* IPX */ #endif #ifdef CONFIG_ATALK { "DDP", atalk_proto_init }, /* Netatalk Appletalk driver */ #endif #ifdef CONFIG_LAPB { "LAPB", lapb_proto_init }, /* LAPB protocols */ #endif #ifdef CONFIG_X25 { "X.25", x25_proto_init }, /* CCITT X.25 Packet Layer */ #endif { NULL, NULL } /* End marker */ };