* Added alternatives to AddInterface()/RemoveInterface() that take the name

of the interface instead.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@39591 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2010-11-23 21:01:19 +00:00
parent 6a75869303
commit 2977e7888f
2 changed files with 20 additions and 4 deletions
+2
View File
@@ -22,8 +22,10 @@ public:
status_t GetNextInterface(uint32* cookie,
BNetworkInterface& interface) const;
status_t AddInterface(const char* name);
status_t AddInterface(
const BNetworkInterface& interface);
status_t RemoveInterface(const char* name);
status_t RemoveInterface(
const BNetworkInterface& interface);