blob: db1ad1ff0e9994883810558652ab53d9385ffb94 [file] [log] [blame]
Elliott Hughes753dcd82010-06-01 18:07:56 -07001/*
2 * Copyright (C) 2010 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "jni.h"
Elliott Hughes753dcd82010-06-01 18:07:56 -070018#include <sys/socket.h>
19
Neil Fuller0ab1a262015-07-07 17:03:25 +010020// Convert from sockaddr_storage to Inet4Address (AF_INET) or Inet6Address (AF_INET6).
21// If 'port' is non-NULL and the address family includes a notion
Elliott Hughes482a3fc2013-03-20 16:10:12 -070022// of port number, *port will be set to the port number.
23jobject sockaddrToInetAddress(JNIEnv* env, const sockaddr_storage& ss, int* port);
Elliott Hughes3b0a5b92010-07-22 15:06:54 -070024
Neil Fuller0ab1a262015-07-07 17:03:25 +010025// Convert from InetAddress to sockaddr_storage. An Inet6Address will be converted to an
26// AF_INET6 sockaddr_in6. An Inet4Address will be converted to an IPv4-mapped AF_INET6
27// sockaddr_in6. This is what you want if you're about to perform an operation on a socket,
28// since all our sockets are AF_INET6.
Elliott Hughes482a3fc2013-03-20 16:10:12 -070029bool inetAddressToSockaddr(JNIEnv* env, jobject inetAddress, int port,
30 sockaddr_storage& ss, socklen_t& sa_len);
Elliott Hughes4664da52011-05-06 17:09:43 -070031
Neil Fuller0ab1a262015-07-07 17:03:25 +010032// Convert from InetAddress to sockaddr_storage. An Inet6Address will be converted to an
33// AF_INET6 sockaddr_in6. An Inet4Address will be converted to a sockaddr_in. This is probably
34// only useful for getnameinfo(2), where we'll be presenting the result to the user and the
35// user may actually care whether the original address was pure IPv4 or an IPv4-mapped IPv6
36// address, and for the MCAST_JOIN_GROUP, MCAST_LEAVE_GROUP, and other multicast socket
37// options.
Elliott Hughes482a3fc2013-03-20 16:10:12 -070038bool inetAddressToSockaddrVerbatim(JNIEnv* env, jobject inetAddress, int port,
39 sockaddr_storage& ss, socklen_t& sa_len);
Elliott Hughes3b0a5b92010-07-22 15:06:54 -070040
41
Elliott Hughes4f11ebe2011-04-19 15:38:10 -070042
Elliott Hughes3b0a5b92010-07-22 15:06:54 -070043// Changes 'fd' to be blocking/non-blocking. Returns false and sets errno on failure.
Elliott Hughes4f11ebe2011-04-19 15:38:10 -070044// @Deprecated - use IoUtils.setBlocking
Elliott Hughes440ba562010-08-04 10:44:16 -070045bool setBlocking(int fd, bool blocking);