2013-11-18 13:11:40 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2013, Haiku, Inc. All Rights Reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef ROUTESUPPORT_H_
|
|
|
|
#define ROUTESUPPORT_H_
|
|
|
|
|
2013-11-18 22:53:39 +04:00
|
|
|
|
2013-11-18 13:11:40 +04:00
|
|
|
#include <ObjectList.h>
|
|
|
|
|
2013-11-18 22:53:39 +04:00
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
|
|
|
2013-11-18 13:11:40 +04:00
|
|
|
status_t get_routes(const char* interfaceName,
|
|
|
|
int family, BObjectList<route_entry>& routes);
|
|
|
|
|
2013-11-18 22:53:39 +04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-11-18 13:11:40 +04:00
|
|
|
#endif /* __ROUTESUPPORT_H_ */
|