Advanced route cache management is now an official part of IP support.

This commit is contained in:
Garrett Wollman 1994-12-11 21:36:10 +00:00
parent dc59b9fd8d
commit 1db18e0fc4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=5045
2 changed files with 2 additions and 8 deletions

View File

@ -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

View File

@ -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"