
At a point not too far in the future, we will be switching from the hardcoded MINIX3 implementation of the getifaddrs(3) libc routine to the proper NetBSD implementation. The latter uses the net.route.rtable sysctl functionality to obtain its information. In order make the transition as painless as possible, this patch adds basic support for that net.route.rtable functionality to INET and LWIP, using the remote MIB (RMIB) facility. Change-Id: I54f5cea7985f6606e317c73a5e6be3a5d07bc7dc
29 lines
399 B
C
29 lines
399 B
C
/*
|
|
inet/proto.h
|
|
|
|
Created: Jan 2, 1992 by Philip Homburg
|
|
|
|
Copyright 1995 Philip Homburg
|
|
*/
|
|
|
|
/* clock.c */
|
|
|
|
void clck_tick(message *mess);
|
|
|
|
/* mnx_eth.c */
|
|
|
|
void eth_rec(message *m);
|
|
void eth_check_driver(char *label, endpoint_t endpoint);
|
|
|
|
/* rtinfo.c */
|
|
|
|
void rtinfo_init(void);
|
|
|
|
/* sr.c */
|
|
|
|
void sr_rec(message *m, int ipc_status);
|
|
|
|
/*
|
|
* $PchId: proto.h,v 1.4 1995/11/21 06:36:37 philip Exp $
|
|
*/
|