Changeset b278b4e in mainline for uspace/lib/net/include
- Timestamp:
- 2010-10-10T19:52:27Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 10056483
- Parents:
- ae972834 (diff), eb51e31 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
- uspace/lib/net/include
- Files:
-
- 1 deleted
- 6 edited
-
arp_interface.h (modified) (1 diff)
-
ip_interface.h (modified) (3 diffs)
-
net_interface.h (modified) (1 diff)
-
netif_interface.h (modified) (2 diffs)
-
netif_local.h (modified) (1 diff)
-
netif_nil_bundle.h (deleted)
-
nil_interface.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/include/arp_interface.h
rae972834 rb278b4e 104 104 * @param service The ARP module service. Ignored parameter. 105 105 * @returns The ARP module phone on success. 106 * @returns 0 if called by the bundle module.107 106 */ 108 107 extern int arp_connect_module(services_t service); 109 108 110 109 /** Returns the ARP task identifier. 111 * @returns The current task identifier if called by the bundle module.112 110 * @returns 0 if called by the remote module. 113 111 */ -
uspace/lib/net/include/ip_interface.h
rae972834 rb278b4e 44 44 #include <ip_codes.h> 45 45 46 #ifdef CONFIG_IL_TL_BUNDLE47 48 #include <ip_local.h>49 50 #define ip_received_error_msg ip_received_error_msg_local51 #define ip_set_gateway_req ip_set_gateway_req_local52 #define ip_packet_size_req ip_packet_size_req_local53 #define ip_device_req ip_device_req_local54 #define ip_add_route_req ip_add_route_req_local55 #define ip_send_msg ip_send_msg_local56 #define ip_get_route_req ip_get_route_req_local57 58 #else59 60 46 #include <ip_remote.h> 61 47 … … 67 53 #define ip_send_msg ip_send_msg_remote 68 54 #define ip_get_route_req ip_get_route_req_remote 69 70 #endif71 55 72 56 /** @name IP module interface … … 100 84 * @param service The IP module service. Ignored parameter. 101 85 * @returns The IP module phone on success. 102 * @returns 0 if called by the bundle module.103 86 */ 104 87 extern int ip_connect_module(services_t service); -
uspace/lib/net/include/net_interface.h
rae972834 rb278b4e 85 85 * @param service The networking module service. Ignored parameter. 86 86 * @returns The networking module phone on success. 87 * @returns 0 if called by the bundle module.88 87 */ 89 88 extern int net_connect_module(services_t service); -
uspace/lib/net/include/netif_interface.h
rae972834 rb278b4e 34 34 #define __NET_NETIF_INTERFACE_H__ 35 35 36 #ifdef CONFIG_NETIF_NIL_BUNDLE37 38 #include <netif_local.h>39 #include <netif_nil_bundle.h>40 #include <packet/packet_server.h>41 42 #define netif_module_message netif_nil_module_message43 #define netif_module_start netif_nil_module_start44 #define netif_get_addr_req netif_get_addr_req_local45 #define netif_probe_req netif_probe_req_local46 #define netif_send_msg netif_send_msg_local47 #define netif_start_req netif_start_req_local48 #define netif_stop_req netif_stop_req_local49 #define netif_stats_req netif_stats_req_local50 #define netif_bind_service netif_bind_service_local51 52 #else /* CONFIG_NETIF_NIL_BUNDLE */53 54 36 #include <netif_remote.h> 55 37 #include <packet_client.h> … … 65 47 #define netif_bind_service netif_bind_service_remote 66 48 67 #endif /* CONFIG_NETIF_NIL_BUNDLE */68 69 49 #endif 70 50 -
uspace/lib/net/include/netif_local.h
rae972834 rb278b4e 34 34 * Network interface module skeleton. 35 35 * The skeleton has to be part of each network interface module. 36 * The skeleton can be also part of the module bundled with the network interface layer.37 36 */ 38 37 -
uspace/lib/net/include/nil_interface.h
rae972834 rb278b4e 68 68 69 69 70 #ifdef CONFIG_NETIF_NIL_BUNDLE71 72 #include <nil_local.h>73 #include <packet/packet_server.h>74 75 #define nil_device_state_msg nil_device_state_msg_local76 #define nil_received_msg nil_received_msg_local77 78 #else /* CONFIG_NETIF_NIL_BUNDLE */79 80 70 #include <nil_remote.h> 81 71 #include <packet/packet_server.h> … … 84 74 #define nil_received_msg nil_received_msg_remote 85 75 86 #endif /* CONFIG_NETIF_NIL_BUNDLE */87 88 76 #endif 89 77
Note:
See TracChangeset
for help on using the changeset viewer.
