Changeset fe5a9fc in mainline for uspace/srv/net/il/ip/ip.c


Ignore:
Timestamp:
2011-01-12T11:25:54Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
73ac2e9
Parents:
77429d3
Message:

do not send extra ARP requests if a lookup is currently in progress (but remove the half-filled lookup data as soon as the lookup times out for the second time)
cstyle fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/il/ip/ip.c

    r77429d3 rfe5a9fc  
    20212021               
    20222022                /* Process the message */
    2023                 int res = il_module_message_standalone(callid, &call, &answer,
     2023                int res = il_module_message(callid, &call, &answer,
    20242024                    &count);
    20252025               
     
    20382038}
    20392039
    2040 /** Starts the module.
    2041  *
    2042  * @return EOK on success.
    2043  * @return Other error codes as defined for each specific module start function.
    2044  */
    20452040int main(int argc, char *argv[])
    20462041{
    2047         int rc;
    2048        
    20492042        /* Start the module */
    2050         rc = il_module_start_standalone(il_client_connection);
    2051         return rc;
     2043        return il_module_start(il_client_connection);
    20522044}
    20532045
Note: See TracChangeset for help on using the changeset viewer.