ACI:GetConnectingNetworkEnableUPnP(bool)

From 3dbrew
Revision as of 06:51, 5 November 2019 by 2670QM (talk | contribs) (Created page with "=Request= {| class="wikitable" border="1" |- ! Index Word ! Description |- | 0 | Header code [0x04A10000] |} =Response= {| class="wikitable" border="1" |- ! Index Word !...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Request

Index Word Description
0 Header code [0x04A10000]

Response

Index Word Description
1 Result code
2 0 = Disabled, 1 = Enabled(?).

Description

If disabled UPnP return 0. If enabled UPnP return 1.(?)

Example

Handle share_ac_handle;

u32* cache_buffer = getThreadCommandBuffer();

srvGetServiceHandle(&share_ac_handle, "ac:i");

cache_buffer[0] = IPC_MakeHeader(0x4A1, 0, 0); // 0x04A20000

svcSendSyncRequest(share_ac_handle);

printf("Result : 0x%lx", cache_buffer[1]);

printf("MTU value : %ld", cache_buffer[2]);

svcCloseHandle(share_ac_handle);