Changeset f99c191 in mainline


Ignore:
Timestamp:
2010-10-10T19:13:19Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
87f78d1
Parents:
e721462
Message:

Remove broken support for bundled networking stack.

Files:
2 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    re721462 rf99c191  
    534534! CONFIG_WRITE_CORE_FILES (n/y)
    535535
    536 % Bundle netif/nil network layer
    537 ! CONFIG_NETIF_NIL_BUNDLE (n/y)
    538 
    539536% Strip binaries
    540537! CONFIG_STRIP_BINARIES (n/y)
  • uspace/lib/net/Makefile

    re721462 rf99c191  
    4141        netif/netif_local.c \
    4242        netif/netif_remote.c \
    43         netif/netif_nil_bundle.c \
    4443        nil/nil_remote.c \
    4544        il/ip_remote.c \
  • uspace/lib/net/include/arp_interface.h

    re721462 rf99c191  
    104104 *  @param service The ARP module service. Ignored parameter.
    105105 *  @returns The ARP module phone on success.
    106  *  @returns 0 if called by the bundle module.
    107106 */
    108107extern int arp_connect_module(services_t service);
    109108
    110109/** Returns the ARP task identifier.
    111  *  @returns The current task identifier if called by the bundle module.
    112110 *  @returns 0 if called by the remote module.
    113111 */
  • uspace/lib/net/include/ip_interface.h

    re721462 rf99c191  
    100100 *  @param service The IP module service. Ignored parameter.
    101101 *  @returns The IP module phone on success.
    102  *  @returns 0 if called by the bundle module.
    103102 */
    104103extern int ip_connect_module(services_t service);
  • uspace/lib/net/include/net_interface.h

    re721462 rf99c191  
    8585 *  @param service The networking module service. Ignored parameter.
    8686 *  @returns The networking module phone on success.
    87  *  @returns 0 if called by the bundle module.
    8887 */
    8988extern int net_connect_module(services_t service);
  • uspace/lib/net/include/netif_interface.h

    re721462 rf99c191  
    3434#define __NET_NETIF_INTERFACE_H__
    3535
    36 #ifdef CONFIG_NETIF_NIL_BUNDLE
    37 
    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_message
    43 #define netif_module_start      netif_nil_module_start
    44 #define netif_get_addr_req      netif_get_addr_req_local
    45 #define netif_probe_req         netif_probe_req_local
    46 #define netif_send_msg          netif_send_msg_local
    47 #define netif_start_req         netif_start_req_local
    48 #define netif_stop_req          netif_stop_req_local
    49 #define netif_stats_req         netif_stats_req_local
    50 #define netif_bind_service      netif_bind_service_local
    51 
    52 #else /* CONFIG_NETIF_NIL_BUNDLE */
    53 
    5436#include <netif_remote.h>
    5537#include <packet_client.h>
     
    6547#define netif_bind_service      netif_bind_service_remote
    6648
    67 #endif /* CONFIG_NETIF_NIL_BUNDLE */
    68 
    6949#endif
    7050
  • uspace/lib/net/include/netif_local.h

    re721462 rf99c191  
    3434 * Network interface module skeleton.
    3535 * 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.
    3736 */
    3837
  • uspace/lib/socket/include/icmp_common.h

    re721462 rf99c191  
    5050 *  @param[in] timeout The connection timeout in microseconds. No timeout if set to zero (0).
    5151 *  @returns The ICMP module phone on success.
    52  *  @returns The ICMP socket identifier if called by the bundle module.
    5352 *  @returns ETIMEOUT if the connection timeouted.
    5453 */
  • uspace/srv/net/net/net_standalone.c

    re721462 rf99c191  
    9494 * @return EOK on success.
    9595 * @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.
    9897 *
    9998 */
Note: See TracChangeset for help on using the changeset viewer.