Java sun nio source

sun.nio.ch.Net Java Examples

The following examples show how to use sun.nio.ch.Net . You can vote up the ones you like or vote down the ones you don’t like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.

Source File: SctpChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From hottub with GNU General Public License v2.0 6 votes
/** * Constructor for sockets obtained from branching */ public SctpChannelImpl(SelectorProvider provider, FileDescriptor fd, Association association) throws IOException < super(provider); this.fd = fd; this.fdVal = IOUtil.fdVal(fd); this.state = ChannelState.CONNECTED; port = (Net.localAddress(fd)).getPort(); if (association != null) < /* branched */ this.association = association; >else < /* obtained from server channel */ /* Receive COMM_UP */ ByteBuffer buf = Util.getTemporaryDirectBuffer(50); try < receive(buf, null, null, true); >finally < Util.releaseTemporaryDirectBuffer(buf); >> >
Source File: SctpChannelImpl.java From dragonwell8_jdk with GNU General Public License v2.0 6 votes
/** * Binds the channel's socket to a local address. */ @Override public SctpChannel bind(SocketAddress local) throws IOException < synchronized (receiveLock) < synchronized (sendLock) < synchronized (stateLock) < ensureOpenAndUnconnected(); if (isBound()) SctpNet.throwAlreadyBoundException(); InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) : Net.checkAddress(local); SecurityManager sm = System.getSecurityManager(); if (sm != null) < sm.checkListen(isa.getPort()); >Net.bind(fd, isa.getAddress(), isa.getPort()); InetSocketAddress boundIsa = Net.localAddress(fd); port = boundIsa.getPort(); localAddresses.add(isa); if (isa.getAddress().isAnyLocalAddress()) wildcard = true; > > > return this; >
Source File: SctpChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
/** * Constructor for sockets obtained from branching */ public SctpChannelImpl(SelectorProvider provider, FileDescriptor fd, Association association) throws IOException < super(provider); this.fd = fd; this.fdVal = IOUtil.fdVal(fd); this.state = ChannelState.CONNECTED; port = (Net.localAddress(fd)).getPort(); if (association != null) < /* branched */ this.association = association; >else < /* obtained from server channel */ /* Receive COMM_UP */ ByteBuffer buf = Util.getTemporaryDirectBuffer(50); try < receive(buf, null, null, true); >finally < Util.releaseTemporaryDirectBuffer(buf); >> >
Source File: SctpChannelImpl.java From openjdk-8-source with GNU General Public License v2.0 6 votes
/** * Binds the channel's socket to a local address. */ @Override public SctpChannel bind(SocketAddress local) throws IOException < synchronized (receiveLock) < synchronized (sendLock) < synchronized (stateLock) < ensureOpenAndUnconnected(); if (isBound()) SctpNet.throwAlreadyBoundException(); InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) : Net.checkAddress(local); SecurityManager sm = System.getSecurityManager(); if (sm != null) < sm.checkListen(isa.getPort()); >Net.bind(fd, isa.getAddress(), isa.getPort()); InetSocketAddress boundIsa = Net.localAddress(fd); port = boundIsa.getPort(); localAddresses.add(isa); if (isa.getAddress().isAnyLocalAddress()) wildcard = true; > > > return this; >
Source File: SctpMultiChannelImpl.java From TencentKona-8 with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From openjdk-8 with GNU General Public License v2.0 6 votes
/** * Constructor for sockets obtained from branching */ public SctpChannelImpl(SelectorProvider provider, FileDescriptor fd, Association association) throws IOException < super(provider); this.fd = fd; this.fdVal = IOUtil.fdVal(fd); this.state = ChannelState.CONNECTED; port = (Net.localAddress(fd)).getPort(); if (association != null) < /* branched */ this.association = association; >else < /* obtained from server channel */ /* Receive COMM_UP */ ByteBuffer buf = Util.getTemporaryDirectBuffer(50); try < receive(buf, null, null, true); >finally < Util.releaseTemporaryDirectBuffer(buf); >> >
Source File: SctpChannelImpl.java From openjdk-8 with GNU General Public License v2.0 6 votes
/** * Binds the channel's socket to a local address. */ @Override public SctpChannel bind(SocketAddress local) throws IOException < synchronized (receiveLock) < synchronized (sendLock) < synchronized (stateLock) < ensureOpenAndUnconnected(); if (isBound()) SctpNet.throwAlreadyBoundException(); InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) : Net.checkAddress(local); SecurityManager sm = System.getSecurityManager(); if (sm != null) < sm.checkListen(isa.getPort()); >Net.bind(fd, isa.getAddress(), isa.getPort()); InetSocketAddress boundIsa = Net.localAddress(fd); port = boundIsa.getPort(); localAddresses.add(isa); if (isa.getAddress().isAnyLocalAddress()) wildcard = true; > > > return this; >
Source File: SctpChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From TencentKona-8 with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpMultiChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From jdk8u_jdk with GNU General Public License v2.0 6 votes
/** * Constructor for sockets obtained from branching */ public SctpChannelImpl(SelectorProvider provider, FileDescriptor fd, Association association) throws IOException < super(provider); this.fd = fd; this.fdVal = IOUtil.fdVal(fd); this.state = ChannelState.CONNECTED; port = (Net.localAddress(fd)).getPort(); if (association != null) < /* branched */ this.association = association; >else < /* obtained from server channel */ /* Receive COMM_UP */ ByteBuffer buf = Util.getTemporaryDirectBuffer(50); try < receive(buf, null, null, true); >finally < Util.releaseTemporaryDirectBuffer(buf); >> >
Source File: SctpMultiChannelImpl.java From openjdk-8 with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpMultiChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From jdk8u60 with GNU General Public License v2.0 6 votes
/** * Binds the channel's socket to a local address. */ @Override public SctpChannel bind(SocketAddress local) throws IOException < synchronized (receiveLock) < synchronized (sendLock) < synchronized (stateLock) < ensureOpenAndUnconnected(); if (isBound()) SctpNet.throwAlreadyBoundException(); InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) : Net.checkAddress(local); SecurityManager sm = System.getSecurityManager(); if (sm != null) < sm.checkListen(isa.getPort()); >Net.bind(fd, isa.getAddress(), isa.getPort()); InetSocketAddress boundIsa = Net.localAddress(fd); port = boundIsa.getPort(); localAddresses.add(isa); if (isa.getAddress().isAnyLocalAddress()) wildcard = true; > > > return this; >
Source File: SctpChannelImpl.java From jdk8u60 with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpMultiChannelImpl.java From hottub with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From openjdk-jdk8u with GNU General Public License v2.0 6 votes
/** * Constructor for sockets obtained from branching */ public SctpChannelImpl(SelectorProvider provider, FileDescriptor fd, Association association) throws IOException < super(provider); this.fd = fd; this.fdVal = IOUtil.fdVal(fd); this.state = ChannelState.CONNECTED; port = (Net.localAddress(fd)).getPort(); if (association != null) < /* branched */ this.association = association; >else < /* obtained from server channel */ /* Receive COMM_UP */ ByteBuffer buf = Util.getTemporaryDirectBuffer(50); try < receive(buf, null, null, true); >finally < Util.releaseTemporaryDirectBuffer(buf); >> >
Source File: SctpChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
/** * Constructor for sockets obtained from branching */ public SctpChannelImpl(SelectorProvider provider, FileDescriptor fd, Association association) throws IOException < super(provider); this.fd = fd; this.fdVal = IOUtil.fdVal(fd); this.state = ChannelState.CONNECTED; port = (Net.localAddress(fd)).getPort(); if (association != null) < /* branched */ this.association = association; >else < /* obtained from server channel */ /* Receive COMM_UP */ ByteBuffer buf = Util.getTemporaryDirectBuffer(50); try < receive(buf, null, null, true); >finally < Util.releaseTemporaryDirectBuffer(buf); >> >
Source File: SctpChannelImpl.java From openjdk-8-source with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From openjdk-jdk8u with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpMultiChannelImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpMultiChannelImpl.java From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From hottub with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpMultiChannelImpl.java From openjdk-jdk9 with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int assocId, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From hottub with GNU General Public License v2.0 6 votes
/** * Binds the channel's socket to a local address. */ @Override public SctpChannel bind(SocketAddress local) throws IOException < synchronized (receiveLock) < synchronized (sendLock) < synchronized (stateLock) < ensureOpenAndUnconnected(); if (isBound()) SctpNet.throwAlreadyBoundException(); InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) : Net.checkAddress(local); SecurityManager sm = System.getSecurityManager(); if (sm != null) < sm.checkListen(isa.getPort()); >Net.bind(fd, isa.getAddress(), isa.getPort()); InetSocketAddress boundIsa = Net.localAddress(fd); port = boundIsa.getPort(); localAddresses.add(isa); if (isa.getAddress().isAnyLocalAddress()) wildcard = true; > > > return this; >
Source File: SctpChannelImpl.java From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From openjdk-jdk9 with GNU General Public License v2.0 6 votes
private int sendFromNativeBuffer(int fd, ByteBuffer bb, SocketAddress target, int streamNumber, boolean unordered, int ppid) throws IOException < InetAddress addr = null; // no preferred address int port = 0; if (target != null) < InetSocketAddress isa = Net.checkAddress(target); addr = isa.getAddress(); port = isa.getPort(); >int pos = bb.position(); int lim = bb.limit(); assert (pos 0) bb.position(pos + written); return written; >
Source File: SctpChannelImpl.java From jdk8u-jdk with GNU General Public License v2.0 6 votes
/** * Binds the channel's socket to a local address. */ @Override public SctpChannel bind(SocketAddress local) throws IOException < synchronized (receiveLock) < synchronized (sendLock) < synchronized (stateLock) < ensureOpenAndUnconnected(); if (isBound()) SctpNet.throwAlreadyBoundException(); InetSocketAddress isa = (local == null) ? new InetSocketAddress(0) : Net.checkAddress(local); SecurityManager sm = System.getSecurityManager(); if (sm != null) < sm.checkListen(isa.getPort()); >Net.bind(fd, isa.getAddress(), isa.getPort()); InetSocketAddress boundIsa = Net.localAddress(fd); port = boundIsa.getPort(); localAddresses.add(isa); if (isa.getAddress().isAnyLocalAddress()) wildcard = true; > > > return this; >
Source File: SctpMultiChannelImpl.java From dragonwell8_jdk with GNU General Public License v2.0 5 votes
Читайте также:  Python comments block will be

@Override public void translateAndSetInterestOps(int ops, SelectionKeyImpl sk)

Источник

Оцените статью