Changeset cc3c2a1c in mainline for uspace/srv/net/net/net.c


Ignore:
Timestamp:
2010-11-19T21:49:41Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1bfd3d3
Parents:
aaa3f33a
Message:

Remove netstart. Start networking just with 'net'.

File:
1 edited

Legend:

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

    raaa3f33a rcc3c2a1c  
    7777GENERIC_CHAR_MAP_IMPLEMENT(measured_strings, measured_string_t);
    7878DEVICE_MAP_IMPLEMENT(netifs, netif_t);
     79
     80static int startup(void);
    7981
    8082/** Add the configured setting to the configuration map.
     
    337339                goto out;
    338340       
     341        rc = startup();
     342        if (rc != EOK)
     343                goto out;
     344       
     345        task_retval(0);
    339346        async_manager();
    340347
Note: See TracChangeset for help on using the changeset viewer.