1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| #pragma once
|
| #include <stdint.h>
| #include "il2cpp-config.h"
|
| struct Il2CppArray;
| struct Il2CppString;
|
| namespace il2cpp
| {
| namespace icalls
| {
| namespace System
| {
| namespace System
| {
| namespace Net
| {
| class LIBIL2CPP_CODEGEN_API Dns
| {
| public:
| static bool GetHostByAddr(Il2CppString*, Il2CppString**, Il2CppArray**, Il2CppArray**);
| static bool GetHostByName(Il2CppString*, Il2CppString**, Il2CppArray**, Il2CppArray**);
| static bool GetHostByAddr40(Il2CppString*, Il2CppString**, Il2CppArray**, Il2CppArray**, int32_t hint);
| static bool GetHostByName40(Il2CppString*, Il2CppString**, Il2CppArray**, Il2CppArray**, int32_t hint);
| static bool GetHostName(Il2CppString**);
| };
| } /* namespace Net */
| } /* namespace System */
| } /* namespace System */
| } /* namespace icalls */
| } /* namespace il2cpp */
|
|