Add basic structure to support netdevice ioctls

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@344 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2007-09-16 17:46:25 +00:00
parent e2b5323f8f
commit 8f3d54ecfe

View File

@ -190,10 +190,14 @@ void uipdriver_loop(void)
int uipdriver_init(void)
{
/* Internal initalization */
timer_set(&g_periodic_timer, 500);
timer_set(&g_arp_timer, 10000 );
tapdev_init();
uip_init();
/* Register the device with the OS so that socket IOCTLs can be performed */
(void)netdev_register(&g_sim_dev);
return OK;
}