Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/inetcfg.c

    r7af0cc5 rb8b1adb1  
    267267}
    268268
    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 
    279269int inetcfg_link_get(sysarg_t link_id, inet_link_info_t *linfo)
    280270{
     
    315305}
    316306
    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 
    327307int inetcfg_sroute_create(const char *name, inet_naddr_t *dest,
    328308    inet_addr_t *router, sysarg_t *sroute_id)
Note: See TracChangeset for help on using the changeset viewer.