Changeset f4f866c in mainline for uspace/srv/net/net/net_standalone.c


Ignore:
Timestamp:
2010-04-23T21:42:26Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6c39a907
Parents:
38aaacc2 (diff), 80badbe (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/net/net_standalone.c

    r38aaacc2 rf4f866c  
    4949/** Networking module global data.
    5050 */
    51 extern net_globals_t    net_globals;
     51extern net_globals_t net_globals;
    5252
     53/** Initialize the networking module for the chosen subsystem build type.
     54 *
     55 *  @param[in] client_connection The client connection processing function.
     56 *                               The module skeleton propagates its own one.
     57 *
     58 *  @return EOK on success.
     59 *  @return ENOMEM if there is not enough memory left.
     60 *
     61 */
    5362int net_initialize_build(async_client_conn_t client_connection){
    5463        ERROR_DECLARE;
    55 
    56         task_id_t task_id;
    57 
    58         task_id = spawn("/srv/ip");
    59         if(! task_id){
     64       
     65        task_id_t task_id = spawn("/srv/ip");
     66        if (!task_id)
    6067                return EINVAL;
    61         }
    62         ERROR_PROPAGATE(add_module(NULL, &net_globals.modules, IP_NAME, IP_FILENAME, SERVICE_IP, task_id, ip_connect_module));
    63         if(! spawn("/srv/icmp")){
     68       
     69        ERROR_PROPAGATE(add_module(NULL, &net_globals.modules, IP_NAME,
     70            IP_FILENAME, SERVICE_IP, task_id, ip_connect_module));
     71       
     72        if (!spawn("/srv/icmp"))
    6473                return EINVAL;
    65         }
    66         if(! spawn("/srv/udp")){
     74       
     75        if (!spawn("/srv/udp"))
    6776                return EINVAL;
    68         }
    69         if(! spawn("/srv/tcp")){
     77       
     78        if (!spawn("/srv/tcp"))
    7079                return EINVAL;
    71         }
     80       
    7281        return EOK;
    7382}
    7483
    75 int net_module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
    76         if(IS_NET_PACKET_MESSAGE(call)){
     84/** Process the module message.
     85 *
     86 * Distribute the message to the right module.
     87 *
     88 * @param[in]  callid       The message identifier.
     89 * @param[in]  call         The message parameters.
     90 * @param[out] answer       The message answer parameters.
     91 * @param[out] answer_count The last parameter for the actual answer in
     92 *                          the answer parameter.
     93 *
     94 * @return EOK on success.
     95 * @return ENOTSUP if the message is not known.
     96 * @return Other error codes as defined for each bundled module
     97 *         message function.
     98 *
     99 */
     100int net_module_message(ipc_callid_t callid, ipc_call_t *call,
     101    ipc_call_t *answer, int *answer_count)
     102{
     103        if (IS_NET_PACKET_MESSAGE(call))
    77104                return packet_server_message(callid, call, answer, answer_count);
    78         }else{
    79                 return net_message(callid, call, answer, answer_count);
    80         }
     105       
     106        return net_message(callid, call, answer, answer_count);
    81107}
    82108
Note: See TracChangeset for help on using the changeset viewer.