jdk/src/windows/native/java/net/NetworkInterface.h
author michaelm
Wed, 13 Feb 2013 10:40:31 +0000
changeset 16870 f35b2bd19761
parent 14342 8435a30053c1
child 22646 5fa3669fd35d
permissions -rw-r--r--
8000724: Improve networking serialization Summary: delegate InetAddress fields to a holder object Reviewed-by: alanb, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14342
8435a30053c1 7197491: update copyright year to match last edit in jdk8 jdk repository
alanb
parents: 12542
diff changeset
     2
 * Copyright (c) 2002, 2012, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1247
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#ifndef NETWORK_INTERFACE_H
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#define NETWORK_INTERFACE_H
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
906
17568a617956 6726164: jdk\src\windows\native\java\net\NetworkInterface.h(172) : error C2365: 'IpPrefixOriginOther' : redef
chegar
parents: 2
diff changeset
    29
#include <iphlpapi.h>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
#include "net_util.h"
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
 * Structures used when enumerating interfaces and addresses
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
typedef struct _netaddr  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
    SOCKETADDRESS    addr;                  /* IPv4 or IPv6 address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    SOCKETADDRESS    brdcast;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
    short            mask;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    struct _netaddr *next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
} netaddr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
typedef struct _netif {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    char *name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    char *displayName;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    DWORD dwIndex;              /* Internal index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    DWORD ifType;               /* Interface type */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    int index;                  /* Friendly index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    struct _netif *next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    /* Following fields used on Windows XP when IPv6 is used only */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    jboolean hasIpv6Address;    /* true when following fields valid */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    jboolean dNameIsUnicode;    /* Display Name is Unicode */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    int naddrs;                 /* Number of addrs */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    DWORD ipv6Index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    struct _netaddr *addrs;     /* addr list for interfaces */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
} netif;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
extern void free_netif(netif *netifP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
extern void free_netaddr(netaddr *netaddrP);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
/* various JNI ids */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
extern jclass ni_class;             /* NetworkInterface */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
extern jmethodID ni_ctor;           /* NetworkInterface() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
extern jfieldID ni_indexID;         /* NetworkInterface.index */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
extern jfieldID ni_addrsID;         /* NetworkInterface.addrs */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
extern jfieldID ni_bindsID;         /* NetworkInterface.bindings */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
extern jfieldID ni_nameID;          /* NetworkInterface.name */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
extern jfieldID ni_displayNameID;   /* NetworkInterface.displayName */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
extern jfieldID ni_childsID;        /* NetworkInterface.childs */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
extern jclass ni_iacls;             /* InetAddress */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
extern jclass ni_ia4cls;            /* Inet4Address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
extern jmethodID ni_ia4Ctor;        /* Inet4Address() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
extern jclass ni_ia6cls;            /* Inet6Address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
extern jmethodID ni_ia6ctrID;       /* Inet6Address() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
extern jfieldID ni_ia6ipaddressID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
extern jfieldID ni_ia6ipaddressID;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
extern jclass ni_ibcls;             /* InterfaceAddress */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
extern jmethodID ni_ibctrID;        /* InterfaceAddress() */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
extern jfieldID ni_ibaddressID;     /* InterfaceAddress.address */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
extern jfieldID ni_ibbroadcastID;   /* InterfaceAddress.broadcast */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
extern jfieldID ni_ibmaskID;        /* InterfaceAddress.maskLength */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
9003
e1b0f0099915 7030256: Cleanup/Remove code supporting old Windows versions (98, NT, 2000, etc)
chegar
parents: 5506
diff changeset
    89
int enumInterfaces(JNIEnv *env, netif **netifPP);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 9003
diff changeset
    91
// Windows Visa (and later) only.....
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 9003
diff changeset
    92
#ifndef IF_TYPE_IEEE80211
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 9003
diff changeset
    93
#define IF_TYPE_IEEE80211     71
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
#endif
12542
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 9003
diff changeset
    95
31190502e9e3 7158636: InterfaceAddress.getBroadcast() returns invalid broadcast address on WLAN
khazra
parents: 9003
diff changeset
    96
#endif