NetworkInterface.h: honor 80 character limit.

This commit is contained in:
Axel Dörfler 2015-02-19 17:34:21 +00:00
parent d880e2d91f
commit db6d25ceba
1 changed files with 4 additions and 2 deletions

View File

@ -106,8 +106,10 @@ public:
status_t RemoveRoute(int family,
const route_entry& route);
status_t RemoveDefaultRoute(int family);
status_t GetRoutes(int family, BObjectList<route_entry>& routes) const;
status_t GetDefaultRoute(int family, BNetworkAddress& gateway) const;
status_t GetRoutes(int family,
BObjectList<route_entry>& routes) const;
status_t GetDefaultRoute(int family,
BNetworkAddress& gateway) const;
status_t AutoConfigure(int family);