2000-08-02 00:24:26 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS TCP/IP protocol driver
|
|
|
|
* FILE: include/route.h
|
|
|
|
* PURPOSE: Routing cache definitions
|
|
|
|
*/
|
|
|
|
#ifndef __ROUTE_H
|
|
|
|
#define __ROUTE_H
|
|
|
|
|
|
|
|
#include <neighbor.h>
|
|
|
|
#include <address.h>
|
|
|
|
#include <router.h>
|
|
|
|
#include <pool.h>
|
2004-03-08 10:20:18 +00:00
|
|
|
#include <info.h>
|
2000-08-02 00:24:26 +00:00
|
|
|
#include <arp.h>
|
|
|
|
|
2004-11-30 00:10:41 +00:00
|
|
|
PNEIGHBOR_CACHE_ENTRY RouteGetRouteToDestination(PIP_ADDRESS Destination);
|
2004-08-19 21:39:00 +00:00
|
|
|
|
2000-08-02 00:24:26 +00:00
|
|
|
#endif /* __ROUTE_H */
|
|
|
|
|
|
|
|
/* EOF */
|