Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/dhcp/main.c

    r053fc2b rb417559  
    109109}
    110110
    111 static void dhcp_discover_srv(ipc_callid_t callid, ipc_call_t *call)
    112 {
    113         sysarg_t link_id;
    114         int rc;
    115 
    116         log_msg(LOG_DEFAULT, LVL_DEBUG, "dhcp_discover_srv()");
    117 
    118         link_id = IPC_GET_ARG1(*call);
    119 
    120         rc = dhcpsrv_discover(link_id);
    121         async_answer_0(callid, rc);
    122 }
    123 
    124111static void dhcp_client_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg)
    125112{
     
    146133                case DHCP_LINK_REMOVE:
    147134                        dhcp_link_remove_srv(callid, &call);
    148                         break;
    149                 case DHCP_DISCOVER:
    150                         dhcp_discover_srv(callid, &call);
    151135                        break;
    152136                default:
Note: See TracChangeset for help on using the changeset viewer.