Changeset f4f866c in mainline for uspace/srv/net/tl/udp/udp_module.c


Ignore:
Timestamp:
2010-04-23T21:42:26Z (15 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/tl/udp/udp_module.c

    r38aaacc2 rf4f866c  
    4747#include <packet/packet.h>
    4848#include <net_interface.h>
    49 #include <tl_standalone.h>
     49#include <tl_local.h>
    5050
    5151#include "udp.h"
     
    6363 *  @returns Other error codes as defined for the REGISTER_ME() macro function.
    6464 */
    65 int tl_module_start(async_client_conn_t client_connection){
     65int tl_module_start_standalone(async_client_conn_t client_connection){
    6666        ERROR_DECLARE;
    6767
     
    9494 *  @returns Other error codes as defined for the udp_message() function.
    9595 */
    96 int tl_module_message(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
    97         return udp_message(callid, call, answer, answer_count);
     96int tl_module_message_standalone(ipc_callid_t callid, ipc_call_t * call, ipc_call_t * answer, int * answer_count){
     97        return udp_message_standalone(callid, call, answer, answer_count);
    9898}
    9999
Note: See TracChangeset for help on using the changeset viewer.