Changes in uspace/srv/net/dhcp/main.c [053fc2b:b417559] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/dhcp/main.c
r053fc2b rb417559 109 109 } 110 110 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 124 111 static void dhcp_client_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg) 125 112 { … … 146 133 case DHCP_LINK_REMOVE: 147 134 dhcp_link_remove_srv(callid, &call); 148 break;149 case DHCP_DISCOVER:150 dhcp_discover_srv(callid, &call);151 135 break; 152 136 default:
Note:
See TracChangeset
for help on using the changeset viewer.