* 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:
@@ -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.
|
* Distributed under the terms of the MIT License.
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
@@ -369,9 +369,13 @@ net_protocol_module_info sICMPModule = {
|
|||||||
icmp_get_domain,
|
icmp_get_domain,
|
||||||
icmp_get_mtu,
|
icmp_get_mtu,
|
||||||
icmp_receive_data,
|
icmp_receive_data,
|
||||||
NULL,
|
NULL, // deliver_data()
|
||||||
icmp_error,
|
icmp_error,
|
||||||
icmp_error_reply,
|
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[] = {
|
module_dependency module_dependencies[] = {
|
||||||
|
|||||||
@@ -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.
|
* Distributed under the terms of the MIT License.
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
@@ -1718,6 +1718,10 @@ net_protocol_module_info gIPv4Module = {
|
|||||||
ipv4_deliver_data,
|
ipv4_deliver_data,
|
||||||
ipv4_error,
|
ipv4_error,
|
||||||
ipv4_error_reply,
|
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[] = {
|
module_dependency module_dependencies[] = {
|
||||||
|
|||||||
@@ -378,9 +378,13 @@ net_protocol_module_info gL2CAPModule = {
|
|||||||
l2cap_get_domain,
|
l2cap_get_domain,
|
||||||
l2cap_get_mtu,
|
l2cap_get_mtu,
|
||||||
l2cap_receive_data,
|
l2cap_receive_data,
|
||||||
NULL,
|
NULL, // deliver_data()
|
||||||
l2cap_error,
|
l2cap_error,
|
||||||
l2cap_error_reply,
|
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[] = {
|
module_dependency module_dependencies[] = {
|
||||||
|
|||||||
@@ -841,9 +841,13 @@ net_protocol_module_info sTCPModule = {
|
|||||||
tcp_get_domain,
|
tcp_get_domain,
|
||||||
tcp_get_mtu,
|
tcp_get_mtu,
|
||||||
tcp_receive_data,
|
tcp_receive_data,
|
||||||
NULL,
|
NULL, // deliver_data()
|
||||||
tcp_error,
|
tcp_error,
|
||||||
tcp_error_reply,
|
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[] = {
|
module_dependency module_dependencies[] = {
|
||||||
|
|||||||
@@ -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.
|
* Distributed under the terms of the MIT License.
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
@@ -1254,6 +1254,10 @@ net_protocol_module_info sUDPModule = {
|
|||||||
udp_deliver_data,
|
udp_deliver_data,
|
||||||
udp_error,
|
udp_error,
|
||||||
udp_error_reply,
|
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[] = {
|
module_dependency module_dependencies[] = {
|
||||||
|
|||||||
Reference in New Issue
Block a user