mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 23:28:57 +00:00
Advanced route cache management is now an official part of IP support.
This commit is contained in:
parent
dc59b9fd8d
commit
1db18e0fc4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5045
@ -177,7 +177,7 @@ netinet/igmp.c optional inet
|
||||
netinet/in.c optional inet
|
||||
netinet/in_pcb.c optional inet
|
||||
netinet/in_proto.c optional inet
|
||||
netinet/in_rmx.c optional in_rmx
|
||||
netinet/in_rmx.c optional inet
|
||||
netinet/ip_icmp.c optional inet
|
||||
netinet/ip_input.c optional inet
|
||||
netinet/ip_mroute.c optional inet
|
||||
|
@ -31,7 +31,7 @@
|
||||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)in_proto.c 8.1 (Berkeley) 6/10/93
|
||||
* $Id: in_proto.c,v 1.6 1994/09/15 10:36:52 davidg Exp $
|
||||
* $Id: in_proto.c,v 1.7 1994/11/02 04:41:39 wollman Exp $
|
||||
*/
|
||||
|
||||
#include <sys/param.h>
|
||||
@ -154,18 +154,12 @@ struct protosw inetsw[] = {
|
||||
},
|
||||
};
|
||||
|
||||
#ifdef IN_RMX
|
||||
extern int in_inithead(void **, int);
|
||||
#endif
|
||||
|
||||
struct domain inetdomain =
|
||||
{ AF_INET, "internet", 0, 0, 0,
|
||||
inetsw, &inetsw[sizeof(inetsw)/sizeof(inetsw[0])], 0,
|
||||
#ifdef IN_RMX
|
||||
in_inithead, 32, sizeof(struct sockaddr_in)
|
||||
#else
|
||||
rn_inithead, 32, sizeof(struct sockaddr_in)
|
||||
#endif
|
||||
};
|
||||
|
||||
#include "imp.h"
|
||||
|
Loading…
Reference in New Issue
Block a user