Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/openjdk-multiarch-jdk8u
Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/windows/native/sun/nio/ch/nio_util.h
32288 views
1
/*
2
* Copyright (c) 2001, 2012, 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
28
#include "jni.h"
29
30
/**
31
* The maximum buffer size for WSASend/WSARecv. Microsoft recommendation for
32
* blocking operations is to use buffers no larger than 64k. We need the
33
* maximum to be less than 128k to support asynchronous close on Windows
34
* Server 2003 and newer editions of Windows.
35
*/
36
#define MAX_BUFFER_SIZE ((128*1024)-1)
37
38
jint fdval(JNIEnv *env, jobject fdo);
39
jlong handleval(JNIEnv *env, jobject fdo);
40
jint convertReturnVal(JNIEnv *env, jint n, jboolean r);
41
jlong convertLongReturnVal(JNIEnv *env, jlong n, jboolean r);
42
jboolean purgeOutstandingICMP(JNIEnv *env, jclass clazz, jint fd);
43
jint handleSocketError(JNIEnv *env, int errorValue);
44
45
#ifdef _WIN64
46
47
struct iovec {
48
jlong iov_base;
49
jint iov_len;
50
};
51
52
#else
53
54
struct iovec {
55
jint iov_base;
56
jint iov_len;
57
};
58
59
#endif
60
61
#ifndef POLLIN
62
/* WSAPoll()/WSAPOLLFD and the corresponding constants are only defined */
63
/* in Windows Vista / Windows Server 2008 and later. If we are on an */
64
/* older release we just use the Solaris constants as this was previously */
65
/* done in PollArrayWrapper.java. */
66
#define POLLIN 0x0001
67
#define POLLOUT 0x0004
68
#define POLLERR 0x0008
69
#define POLLHUP 0x0010
70
#define POLLNVAL 0x0020
71
#define POLLCONN 0x0002
72
#else
73
/* POLLCONN must not equal any of the other constants (see winsock2.h). */
74
#define POLLCONN 0x2000
75
#endif
76
77