glued the multicast filter handling to the receive path: we are now capable of receiving multicast frames in datagram sockets.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@20695 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Hugo Santos
2007-04-15 07:31:04 +00:00
parent 4229d7091e
commit 6a60618094
8 changed files with 313 additions and 96 deletions
+2 -1
View File
@@ -55,8 +55,9 @@ struct net_protocol_module_info {
size_t (*get_mtu)(net_protocol *self, const struct sockaddr *address);
status_t (*receive_data)(net_buffer *data);
status_t (*error)(uint32 code, net_buffer *data);
status_t (*deliver_data)(net_protocol *protocol, net_buffer *data);
status_t (*error)(uint32 code, net_buffer *data);
status_t (*error_reply)(net_protocol *self, net_buffer *causedError,
uint32 code, void *errorData);
};