* Added missing hooks with a description of what's missing for clarity.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31077 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2009-06-17 09:32:30 +00:00
parent bbe9c7b15e
commit 9871124eb2
5 changed files with 26 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright 2006-2008, Haiku, Inc. All Rights Reserved.
* Copyright 2006-2009, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
@ -369,9 +369,13 @@ net_protocol_module_info sICMPModule = {
icmp_get_domain,
icmp_get_mtu,
icmp_receive_data,
NULL,
NULL, // deliver_data()
icmp_error,
icmp_error_reply,
NULL, // add_ancillary_data()
NULL, // process_ancillary_data()
NULL, // send_data_no_buffer()
NULL // read_data_no_buffer()
};
module_dependency module_dependencies[] = {

View File

@ -1,5 +1,5 @@
/*
* Copyright 2006-2008, Haiku, Inc. All Rights Reserved.
* Copyright 2006-2009, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
@ -1718,6 +1718,10 @@ net_protocol_module_info gIPv4Module = {
ipv4_deliver_data,
ipv4_error,
ipv4_error_reply,
NULL, // add_ancillary_data()
NULL, // process_ancillary_data()
NULL, // send_data_no_buffer()
NULL // read_data_no_buffer()
};
module_dependency module_dependencies[] = {

View File

@ -378,9 +378,13 @@ net_protocol_module_info gL2CAPModule = {
l2cap_get_domain,
l2cap_get_mtu,
l2cap_receive_data,
NULL,
NULL, // deliver_data()
l2cap_error,
l2cap_error_reply,
NULL, // add_ancillary_data()
NULL, // process_ancillary_data()
NULL, // send_data_no_buffer()
NULL // read_data_no_buffer()
};
module_dependency module_dependencies[] = {

View File

@ -841,9 +841,13 @@ net_protocol_module_info sTCPModule = {
tcp_get_domain,
tcp_get_mtu,
tcp_receive_data,
NULL,
NULL, // deliver_data()
tcp_error,
tcp_error_reply,
NULL, // add_ancillary_data()
NULL, // process_ancillary_data()
NULL, // send_data_no_buffer()
NULL // read_data_no_buffer()
};
module_dependency module_dependencies[] = {

View File

@ -1,5 +1,5 @@
/*
* Copyright 2006-2008, Haiku, Inc. All Rights Reserved.
* Copyright 2006-2009, Haiku, Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
@ -1254,6 +1254,10 @@ net_protocol_module_info sUDPModule = {
udp_deliver_data,
udp_error,
udp_error_reply,
NULL, // add_ancillary_data()
NULL, // process_ancillary_data()
NULL, // send_data_no_buffer()
NULL // read_data_no_buffer()
};
module_dependency module_dependencies[] = {