Example #1
0
/*---------------------------------------------------------------------------*/
int
tcpip_init(void)
{
	int ret = 0;
	
    if (overlayload(9))
    {
        ret = _tcpip_init();
        overlayunload(9);
    }

	return ret;
}
Example #2
0
/*---------------------------------------------------------------------------*/
int
tcpip_init(void)
{
    int ret = 0;

    if (overlayload(9)) {
        ret = _tcpip_init();
        overlayunload(9);
    }
    
    pIoTMlme->TcpInit = TRUE;
    return ret;
}