-
Notifications
You must be signed in to change notification settings - Fork 3
/
JtuxNetwork.h
237 lines (208 loc) · 5.66 KB
/
JtuxNetwork.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class jtux_UNetwork */
#ifndef _Included_jtux_UNetwork
#define _Included_jtux_UNetwork
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: jtux_UNetwork
* Method: accept
* Signature: (ILjtux/UNetwork$s_sockaddr;Ljtux/UUtil$IntHolder;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_accept
(JNIEnv *, jclass, jint, jobject, jobject);
/*
* Class: jtux_UNetwork
* Method: bind
* Signature: (ILjtux/UNetwork$s_sockaddr;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_bind
(JNIEnv *, jclass, jint, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: connect
* Signature: (ILjtux/UNetwork$s_sockaddr;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_connect
(JNIEnv *, jclass, jint, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: freeaddrinfo
* Signature: (Ljtux/UNetwork$s_addrinfo;)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_freeaddrinfo
(JNIEnv *, jclass, jobject);
/*
* Class: jtux_UNetwork
* Method: gai_strerror
* Signature: (I)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_jtux_UNetwork_gai_1strerror
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UNetwork
* Method: getaddrinfo
* Signature: (Ljava/lang/String;Ljava/lang/String;Ljtux/UNetwork$s_addrinfo;Ljtux/UNetwork$AddrInfoListHead;)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_getaddrinfo
(JNIEnv *, jclass, jstring, jstring, jobject, jobject);
/*
* Class: jtux_UNetwork
* Method: gethostid
* Signature: ()J
*/
JNIEXPORT jlong JNICALL Java_jtux_UNetwork_gethostid
(JNIEnv *, jclass);
/*
* Class: jtux_UNetwork
* Method: gethostname
* Signature: (Ljava/lang/StringBuffer;)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_gethostname
(JNIEnv *, jclass, jobject);
/*
* Class: jtux_UNetwork
* Method: getnameinfo
* Signature: (Ljtux/UNetwork$s_sockaddr;ILjava/lang/StringBuffer;Ljava/lang/StringBuffer;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_getnameinfo
(JNIEnv *, jclass, jobject, jint, jobject, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: getsockopt
* Signature: (IIILjtux/UNetwork$SockOptValue;Ljtux/UUtil$IntHolder;)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_getsockopt
(JNIEnv *, jclass, jint, jint, jint, jobject, jobject);
/*
* Class: jtux_UNetwork
* Method: htonl
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_htonl
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UNetwork
* Method: htons
* Signature: (S)S
*/
JNIEXPORT jshort JNICALL Java_jtux_UNetwork_htons
(JNIEnv *, jclass, jshort);
/*
* Class: jtux_UNetwork
* Method: inet_ntop
* Signature: (II)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_jtux_UNetwork_inet_1ntop__II
(JNIEnv *, jclass, jint, jint);
/*
* Class: jtux_UNetwork
* Method: inet_ntop
* Signature: (I[B)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_jtux_UNetwork_inet_1ntop__I_3B
(JNIEnv *, jclass, jint, jbyteArray);
/*
* Class: jtux_UNetwork
* Method: inet_pton
* Signature: (ILjava/lang/String;Ljtux/UUtil$IntHolder;)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_inet_1pton__ILjava_lang_String_2Ljtux_UUtil_00024IntHolder_2
(JNIEnv *, jclass, jint, jstring, jobject);
/*
* Class: jtux_UNetwork
* Method: inet_pton
* Signature: (ILjava/lang/String;[B)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_inet_1pton__ILjava_lang_String_2_3B
(JNIEnv *, jclass, jint, jstring, jbyteArray);
/*
* Class: jtux_UNetwork
* Method: listen
* Signature: (II)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_listen
(JNIEnv *, jclass, jint, jint);
/*
* Class: jtux_UNetwork
* Method: ntohl
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_ntohl
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UNetwork
* Method: ntohs
* Signature: (S)S
*/
JNIEXPORT jshort JNICALL Java_jtux_UNetwork_ntohs
(JNIEnv *, jclass, jshort);
/*
* Class: jtux_UNetwork
* Method: recv
* Signature: (I[BII)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_recv
(JNIEnv *, jclass, jint, jbyteArray, jint, jint);
/*
* Class: jtux_UNetwork
* Method: recvfrom
* Signature: (I[BIILjtux/UNetwork$s_sockaddr;Ljtux/UUtil$IntHolder;)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_recvfrom
(JNIEnv *, jclass, jint, jbyteArray, jint, jint, jobject, jobject);
/*
* Class: jtux_UNetwork
* Method: recvmsg
* Signature: (ILjtux/UNetwork$s_msghdr;I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_recvmsg
(JNIEnv *, jclass, jint, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: send
* Signature: (I[BII)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_send
(JNIEnv *, jclass, jint, jbyteArray, jint, jint);
/*
* Class: jtux_UNetwork
* Method: sendmsg
* Signature: (ILjtux/UNetwork$s_msghdr;I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_sendmsg
(JNIEnv *, jclass, jint, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: sendto
* Signature: (I[BIILjtux/UNetwork$s_sockaddr;I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_sendto
(JNIEnv *, jclass, jint, jbyteArray, jint, jint, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: setsockopt
* Signature: (IIILjtux/UNetwork$SockOptValue;I)V
*/
JNIEXPORT void JNICALL Java_jtux_UNetwork_setsockopt
(JNIEnv *, jclass, jint, jint, jint, jobject, jint);
/*
* Class: jtux_UNetwork
* Method: sockatmark
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_sockatmark
(JNIEnv *, jclass, jint);
/*
* Class: jtux_UNetwork
* Method: socket
* Signature: (III)I
*/
JNIEXPORT jint JNICALL Java_jtux_UNetwork_socket
(JNIEnv *, jclass, jint, jint, jint);
#ifdef __cplusplus
}
#endif
#endif