mirror of
https://github.com/dborth/vbagx.git
synced 2024-11-25 20:16:53 +01:00
This commit is contained in:
parent
d8cb3daab0
commit
f7435be91b
@ -180,7 +180,7 @@ static void * netcb (void *arg)
|
|||||||
s32 res=-1;
|
s32 res=-1;
|
||||||
int retry;
|
int retry;
|
||||||
int wait;
|
int wait;
|
||||||
static bool first=true;
|
static bool prevInit = false;
|
||||||
|
|
||||||
while(netHalt != 2)
|
while(netHalt != 2)
|
||||||
{
|
{
|
||||||
@ -188,11 +188,11 @@ static void * netcb (void *arg)
|
|||||||
|
|
||||||
while (retry>0 && (netHalt != 2))
|
while (retry>0 && (netHalt != 2))
|
||||||
{
|
{
|
||||||
if(!first)
|
if(prevInit)
|
||||||
{
|
{
|
||||||
bool reset=false;
|
bool reset=false;
|
||||||
int i;
|
int i;
|
||||||
for(i=0;i<500 && (netHalt != 2);i++) // 10 seconds to try to reset
|
for(i=0; i < 500 && (netHalt != 2); i++) // 10 seconds to try to reset
|
||||||
{
|
{
|
||||||
res = net_get_status();
|
res = net_get_status();
|
||||||
if(res != -EBUSY) // trying to init net so we can't kill the net
|
if(res != -EBUSY) // trying to init net so we can't kill the net
|
||||||
@ -210,8 +210,8 @@ static void * netcb (void *arg)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
first=false;
|
|
||||||
net_deinit();
|
net_deinit();
|
||||||
usleep(2000);
|
usleep(2000);
|
||||||
res = net_init_async(NULL, NULL);
|
res = net_init_async(NULL, NULL);
|
||||||
|
|
||||||
@ -242,7 +242,8 @@ static void * netcb (void *arg)
|
|||||||
if (hostip.s_addr)
|
if (hostip.s_addr)
|
||||||
{
|
{
|
||||||
strcpy(wiiIP, inet_ntoa(hostip));
|
strcpy(wiiIP, inet_ntoa(hostip));
|
||||||
networkInit = true;
|
networkInit = true;
|
||||||
|
prevInit = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(netHalt != 2) LWP_SuspendThread(networkthread);
|
if(netHalt != 2) LWP_SuspendThread(networkthread);
|
||||||
|
Loading…
Reference in New Issue
Block a user