jdk/src/solaris/classes/sun/nio/ch/InheritedChannel.java
author ohair
Tue, 25 May 2010 15:58:33 -0700
changeset 5506 202f599c92aa
parent 2 90ce3da70b43
child 6525 56be41b86ef8
permissions -rw-r--r--
6943119: Rebrand source copyright notices Reviewed-by: darcy, weijun
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     2
 * Copyright (c) 2003, 2004, 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: 2
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: 2
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: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
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
package sun.nio.ch;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.lang.reflect.Constructor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.FileDescriptor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.io.IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.net.InetAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.net.InetSocketAddress;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.nio.channels.Channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.nio.channels.SocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.nio.channels.ServerSocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.nio.channels.DatagramChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.nio.channels.spi.SelectorProvider;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
class InheritedChannel {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    // the "types" of socket returned by soType0
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private static final int UNKNOWN            = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static final int SOCK_STREAM        = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    private static final int SOCK_DGRAM         = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    // oflag values when opening a file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static final int O_RDONLY           = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    private static final int O_WRONLY           = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    private static final int O_RDWR             = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * In order to "detach" the standard streams we dup them to /dev/null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * In order to reduce the possibility of an error at close time we
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * open /dev/null early - that way we know we won't run out of file
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * descriptors at close time. This makes the close operation a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * simple dup2 operation for each of the standard streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private static int devnull = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    private static void detachIOStreams() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
            dup2(devnull, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            dup2(devnull, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            dup2(devnull, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        } catch (IOException ioe) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            // this shouldn't happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            throw new InternalError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
     * Override the implCloseSelectableChannel for each channel type - this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * allows us to "detach" the standard streams after closing and ensures
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * that the underlying socket really closes.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    public static class InheritedSocketChannelImpl extends SocketChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        InheritedSocketChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
                                   FileDescriptor fd,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
                                   InetSocketAddress remote)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            super(sp, fd, remote);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    public static class InheritedServerSocketChannelImpl extends
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        ServerSocketChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        InheritedServerSocketChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                                         FileDescriptor fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            super(sp, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    public static class InheritedDatagramChannelImpl extends
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        DatagramChannelImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        InheritedDatagramChannelImpl(SelectorProvider sp,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                                     FileDescriptor fd)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            throws IOException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            super(sp, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        protected void implCloseSelectableChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            super.implCloseSelectableChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            detachIOStreams();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * If there's a SecurityManager then check for the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * RuntimePermission.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    private static void checkAccess(Channel c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        SecurityManager sm = System.getSecurityManager();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        if (sm != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            sm.checkPermission(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                new RuntimePermission("inheritedChannel")
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * If standard inherited channel is connected to a socket then return a Channel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * of the appropriate type based standard input.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    private static Channel createChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
        // dup the file descriptor - we do this so that for two reasons :-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        // 1. Avoids any timing issues with FileDescriptor.in being closed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        //    or redirected while we create the channel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        // 2. Allows streams based on file descriptor 0 to co-exist with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        //    the channel (closing one doesn't impact the other)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        int fdVal = dup(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        // Examine the file descriptor - if it's not a socket then we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // create a channel so we release the file descriptor.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        int st;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        st = soType0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        if (st != SOCK_STREAM && st != SOCK_DGRAM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            close0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        // Next we create a FileDescriptor for the dup'ed file descriptor
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        // Have to use reflection and also make assumption on how FD
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        // is implemented.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        Class paramTypes[] = { int.class };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        Constructor ctr = Reflect.lookupConstructor("java.io.FileDescriptor",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                                                    paramTypes);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        Object args[] = { new Integer(fdVal) };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        FileDescriptor fd = (FileDescriptor)Reflect.invoke(ctr, args);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        // Now create the channel. If the socket is a streams socket then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        // we see if tthere is a peer (ie: connected). If so, then we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        // create a SocketChannel, otherwise a ServerSocketChannel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        // If the socket is a datagram socket then create a DatagramChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        SelectorProvider provider = SelectorProvider.provider();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        assert provider instanceof sun.nio.ch.SelectorProviderImpl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        Channel c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        if (st == SOCK_STREAM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            InetAddress ia = peerAddress0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            if (ia == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
               c = new InheritedServerSocketChannelImpl(provider, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
               int port = peerPort0(fdVal);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
               assert port > 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
               InetSocketAddress isa = new InetSocketAddress(ia, port);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
               c = new InheritedSocketChannelImpl(provider, fd, isa);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            c = new InheritedDatagramChannelImpl(provider, fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    private static boolean haveChannel = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    private static Channel channel = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * Returns a Channel representing the inherited channel if the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     * inherited channel is a stream connected to a network socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    public static synchronized Channel getChannel() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        if (devnull < 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            devnull = open0("/dev/null", O_RDWR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        // If we don't have the channel try to create it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        if (!haveChannel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            channel = createChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            haveChannel = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        // if there is a channel then do the security check before
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        // returning it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        if (channel != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            checkAccess(channel);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
        return channel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    // -- Native methods --
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    private static native int dup(int fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
    private static native void dup2(int fd, int fd2) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    private static native int open0(String path, int oflag) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    private static native void close0(int fd) throws IOException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    private static native int soType0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    private static native InetAddress peerAddress0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    private static native int peerPort0(int fd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    static {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        Util.load();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
}