sceNetApctlConnect returns 80410A0D
sceNetApctlConnect returns 80410A0D
Haven't found any information about this error (pspkerror.h was no help...)
-
- Posts: 18
- Joined: Wed Nov 28, 2007 4:18 am
Try calling this two functions before call sceNetApctlConnect.
Code: Select all
void NetInit(void)
{
sceNetInit();
sceNetInetInit();
sceNetResolverInit();
sceNetApctlInit(0x5400, 0x30, NULL);
}
void LoadNetModules(void)
{
unsigned int v0;
v0 = sceUtilityLoadNetModule(1);
if(v0 < 0)
{
printf("uLoadNetModules: Error 0x%08X loading pspnet.prx.\n", v0);
}
v0 = sceUtilityLoadNetModule(3);
if(v0 < 0)
{
printf("uLoadNetModules: Error 0x%08X loading parseuri.\n", v0);
}
v0 = sceUtilityLoadNetModule(4);
if(v0 < 0)
{
printf("uLoadNetModules: Error 0x%08X loading pspnet_inet.prx.\n", v0);
}
v0 = sceUtilityLoadNetModule(5);
if(v0 < 0)
{
printf("uLoadNetModules: Error 0x%08X loading parsehttp.\n", v0);
}
v0 = sceUtilityLoadNetModule(6);
if(v0 < 0)
{
printf("uLoadNetModules: Error 0x%08X loading pspnet.prx.\n", v0);
}
}