ACI:GetConnectingNetworkMtu: Difference between revisions
No edit summary  | 
				|||
| Line 25: | Line 25: | ||
If 3DS is connected to Internet return current access point MTU value.  | If 3DS is connected to Internet return current access point MTU value.  | ||
If 3DS isn't connected to Internet return last connected access point MTU value.(If 3DS has never connected any access point return 0)  | If 3DS isn't connected to Internet return last connected access point MTU value.(If 3DS has never connected any access point return 0)  | ||
=Example=  | |||
Handle share_ac_handle;  | |||
u32* cmdbuf = getThreadCommandBuffer();  | |||
srvGetServiceHandle(&share_ac_handle, "ac:i");  | |||
cmdbuf[0] = IPC_MakeHeader(0x4A2, 0, 0); // 0x04A20000  | |||
svcSendSyncRequest(share_ac_handle);  | |||
printf("MTU value : %ld", cache_buffer[2]);  | |||