Renamed net_device::{add|rem}_multi() to {add|remove}_multicast for consistency and clarity.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@21008 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2007-05-04 06:57:26 +00:00
parent 246b7a47b9
commit 8c40c83fa1
4 changed files with 19 additions and 13 deletions
+4 -2
View File
@@ -55,8 +55,10 @@ struct net_device_module_info {
status_t (*set_promiscuous)(struct net_device *device, bool promiscuous);
status_t (*set_media)(struct net_device *device, uint32 media);
status_t (*add_multi)(struct net_device *device, const sockaddr *);
status_t (*rem_multi)(struct net_device *device, const sockaddr *);
status_t (*add_multicast)(struct net_device *device,
const sockaddr *address);
status_t (*remove_multicast)(struct net_device *device,
const sockaddr *address);
};
#endif // NET_DEVICE_H