Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/java.base/windows/native/libnio/ch/nio_util.h
41134 views
1
/*
2
* Copyright (c) 2001, 2021, Oracle and/or its affiliates. All rights reserved.
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
*
5
* This code is free software; you can redistribute it and/or modify it
6
* under the terms of the GNU General Public License version 2 only, as
7
* published by the Free Software Foundation. Oracle designates this
8
* particular file as subject to the "Classpath" exception as provided
9
* by Oracle in the LICENSE file that accompanied this code.
10
*
11
* This code is distributed in the hope that it will be useful, but WITHOUT
12
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14
* version 2 for more details (a copy is included in the LICENSE file that
15
* accompanied this code).
16
*
17
* You should have received a copy of the GNU General Public License version
18
* 2 along with this work; if not, write to the Free Software Foundation,
19
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20
*
21
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22
* or visit www.oracle.com if you need additional information or have any
23
* questions.
24
*/
25
26
#include <winsock2.h>
27
#include <ws2tcpip.h>
28
#include <afunix.h>
29
30
#include "jni.h"
31
32
/**
33
* The maximum buffer size for WSASend/WSARecv. Microsoft recommendation for
34
* blocking operations is to use buffers no larger than 64k. We need the
35
* maximum to be less than 128k to support asynchronous close on Windows
36
* Server 2003 and newer editions of Windows.
37
*/
38
#define MAX_BUFFER_SIZE ((128*1024)-1)
39
40
#define MAX_UNIX_DOMAIN_PATH_LEN \
41
(int)(sizeof(((struct sockaddr_un *)0)->sun_path)-2)
42
43
jint fdval(JNIEnv *env, jobject fdo);
44
void setfdval(JNIEnv *env, jobject fdo, jint val);
45
jlong handleval(JNIEnv *env, jobject fdo);
46
jint convertReturnVal(JNIEnv *env, jint n, jboolean r);
47
jlong convertLongReturnVal(JNIEnv *env, jlong n, jboolean r);
48
jboolean purgeOutstandingICMP(JNIEnv *env, jclass clazz, jint fd);
49
jint handleSocketError(JNIEnv *env, int errorValue);
50
51
#ifdef _WIN64
52
53
struct iovec {
54
jlong iov_base;
55
jint iov_len;
56
};
57
58
#else
59
60
struct iovec {
61
jint iov_base;
62
jint iov_len;
63
};
64
65
#endif
66
67
/* Defined in UnixDomainSockets.c */
68
69
jbyteArray sockaddrToUnixAddressBytes(JNIEnv *env, struct sockaddr_un *sa, socklen_t len);
70
71
jint unixSocketAddressToSockaddr(JNIEnv *env, jbyteArray uaddr,
72
struct sockaddr_un *sa, int *len);
73
74
75