Changes in uspace/lib/c/generic/inetcfg.c [7af0cc5:b8b1adb1] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/inetcfg.c
r7af0cc5 rb8b1adb1 267 267 } 268 268 269 int inetcfg_link_add(sysarg_t link_id)270 {271 async_exch_t *exch = async_exchange_begin(inetcfg_sess);272 273 int rc = async_req_1_0(exch, INETCFG_LINK_ADD, link_id);274 async_exchange_end(exch);275 276 return rc;277 }278 279 269 int inetcfg_link_get(sysarg_t link_id, inet_link_info_t *linfo) 280 270 { … … 315 305 } 316 306 317 int inetcfg_link_remove(sysarg_t link_id)318 {319 async_exch_t *exch = async_exchange_begin(inetcfg_sess);320 321 int rc = async_req_1_0(exch, INETCFG_LINK_REMOVE, link_id);322 async_exchange_end(exch);323 324 return rc;325 }326 327 307 int inetcfg_sroute_create(const char *name, inet_naddr_t *dest, 328 308 inet_addr_t *router, sysarg_t *sroute_id)
Note:
See TracChangeset
for help on using the changeset viewer.