Changeset f99c191 in mainline
- Timestamp:
- 2010-10-10T19:13:19Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 87f78d1
- Parents:
- e721462
- Files:
-
- 2 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
HelenOS.config
re721462 rf99c191 534 534 ! CONFIG_WRITE_CORE_FILES (n/y) 535 535 536 % Bundle netif/nil network layer537 ! CONFIG_NETIF_NIL_BUNDLE (n/y)538 539 536 % Strip binaries 540 537 ! CONFIG_STRIP_BINARIES (n/y) -
uspace/lib/net/Makefile
re721462 rf99c191 41 41 netif/netif_local.c \ 42 42 netif/netif_remote.c \ 43 netif/netif_nil_bundle.c \44 43 nil/nil_remote.c \ 45 44 il/ip_remote.c \ -
uspace/lib/net/include/arp_interface.h
re721462 rf99c191 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
re721462 rf99c191 100 100 * @param service The IP module service. Ignored parameter. 101 101 * @returns The IP module phone on success. 102 * @returns 0 if called by the bundle module.103 102 */ 104 103 extern int ip_connect_module(services_t service); -
uspace/lib/net/include/net_interface.h
re721462 rf99c191 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
re721462 rf99c191 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
re721462 rf99c191 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/socket/include/icmp_common.h
re721462 rf99c191 50 50 * @param[in] timeout The connection timeout in microseconds. No timeout if set to zero (0). 51 51 * @returns The ICMP module phone on success. 52 * @returns The ICMP socket identifier if called by the bundle module.53 52 * @returns ETIMEOUT if the connection timeouted. 54 53 */ -
uspace/srv/net/net/net_standalone.c
re721462 rf99c191 94 94 * @return EOK on success. 95 95 * @return ENOTSUP if the message is not known. 96 * @return Other error codes as defined for each bundled module 97 * message function. 96 * @return Other error codes. 98 97 * 99 98 */
Note:
See TracChangeset
for help on using the changeset viewer.