Java Code Examples for sun.nio.ch.Net#checkAddress()
The following examples show how to use
sun.nio.ch.Net#checkAddress() .
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.
Example 1
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; }
Example 2
Source File: SctpChannelImpl.java From openjdk-jdk8u 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; }
Example 3
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 <= lim); int rem = (pos <= lim ? lim - pos : 0); int written = send0(fd, ((DirectBuffer)bb).address() + pos, rem, addr, port, -1 /*121*/, streamNumber, unordered, ppid); if (written > 0) bb.position(pos + written); return written; }
Example 4
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; }
Example 5
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 <= lim); int rem = (pos <= lim ? lim - pos : 0); int written = send0(fd, ((DirectBuffer)bb).address() + pos, rem, addr, port, assocId, streamNumber, unordered, ppid); if (written > 0) bb.position(pos + written); return written; }
Example 6
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; }
Example 7
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; }
Example 8
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; }
Example 9
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; }
Example 10
Source File: SctpMultiChannelImpl.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
@Override public SctpMultiChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (receiveLock) { synchronized (sendLock) { synchronized (stateLock) { ensureOpen(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } } return this; }
Example 11
Source File: SctpMultiChannelImpl.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
@Override public SctpMultiChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (receiveLock) { synchronized (sendLock) { synchronized (stateLock) { ensureOpen(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } } return this; }
Example 12
Source File: SctpServerChannelImpl.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
@Override public SctpServerChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (lock) { synchronized (stateLock) { if (!isOpen()) throw new ClosedChannelException(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } return this; }
Example 13
Source File: SctpMultiChannelImpl.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
@Override public SctpMultiChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (receiveLock) { synchronized (sendLock) { synchronized (stateLock) { ensureOpen(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } } return this; }
Example 14
Source File: SctpServerChannelImpl.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
@Override public SctpServerChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (lock) { synchronized (stateLock) { if (!isOpen()) throw new ClosedChannelException(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } return this; }
Example 15
Source File: SctpServerChannelImpl.java From hottub with GNU General Public License v2.0 | 5 votes |
@Override public SctpServerChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (lock) { synchronized (stateLock) { if (!isOpen()) throw new ClosedChannelException(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } return this; }
Example 16
Source File: SctpMultiChannelImpl.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
@Override public SctpMultiChannel bind(SocketAddress local, int backlog) throws IOException { synchronized (receiveLock) { synchronized (sendLock) { synchronized (stateLock) { ensureOpen(); 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; SctpNet.listen(fdVal, backlog < 1 ? 50 : backlog); } } } return this; }
Example 17
Source File: SctpNet.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
static <T> void setSocketOption(int fd, SctpSocketOption<T> name, T value, int assocId) throws IOException { if (value == null) throw new IllegalArgumentException("Invalid option value"); if (name.equals(SCTP_INIT_MAXSTREAMS)) { InitMaxStreams maxStreamValue = (InitMaxStreams)value; SctpNet.setInitMsgOption0(fd, maxStreamValue.maxInStreams(), maxStreamValue.maxOutStreams()); } else if (name.equals(SCTP_PRIMARY_ADDR) || name.equals(SCTP_SET_PEER_PRIMARY_ADDR)) { SocketAddress addr = (SocketAddress) value; if (addr == null) throw new IllegalArgumentException("Invalid option value"); Net.checkAddress(addr); InetSocketAddress netAddr = (InetSocketAddress)addr; if (name.equals(SCTP_PRIMARY_ADDR)) { setPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort()); } else { setPeerPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort(), IPv4MappedAddresses()); } } else if (name.equals(SCTP_DISABLE_FRAGMENTS) || name.equals(SCTP_EXPLICIT_COMPLETE) || name.equals(SCTP_FRAGMENT_INTERLEAVE) || name.equals(SCTP_NODELAY) || name.equals(SO_SNDBUF) || name.equals(SO_RCVBUF) || name.equals(SO_LINGER)) { setIntOption(fd, name, value); } else { throw new AssertionError("Unknown socket option"); } }
Example 18
Source File: SctpNet.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
static <T> void setSocketOption(int fd, SctpSocketOption<T> name, T value, int assocId) throws IOException { if (value == null) throw new IllegalArgumentException("Invalid option value"); if (name.equals(SCTP_INIT_MAXSTREAMS)) { InitMaxStreams maxStreamValue = (InitMaxStreams)value; SctpNet.setInitMsgOption0(fd, maxStreamValue.maxInStreams(), maxStreamValue.maxOutStreams()); } else if (name.equals(SCTP_PRIMARY_ADDR) || name.equals(SCTP_SET_PEER_PRIMARY_ADDR)) { SocketAddress addr = (SocketAddress) value; if (addr == null) throw new IllegalArgumentException("Invalid option value"); Net.checkAddress(addr); InetSocketAddress netAddr = (InetSocketAddress)addr; if (name.equals(SCTP_PRIMARY_ADDR)) { setPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort()); } else { setPeerPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort(), IPv4MappedAddresses()); } } else if (name.equals(SCTP_DISABLE_FRAGMENTS) || name.equals(SCTP_EXPLICIT_COMPLETE) || name.equals(SCTP_FRAGMENT_INTERLEAVE) || name.equals(SCTP_NODELAY) || name.equals(SO_SNDBUF) || name.equals(SO_RCVBUF) || name.equals(SO_LINGER)) { setIntOption(fd, name, value); } else { throw new AssertionError("Unknown socket option"); } }
Example 19
Source File: SctpNet.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
static <T> void setSocketOption(int fd, SctpSocketOption<T> name, T value, int assocId) throws IOException { if (value == null) throw new IllegalArgumentException("Invalid option value"); if (name.equals(SCTP_INIT_MAXSTREAMS)) { InitMaxStreams maxStreamValue = (InitMaxStreams)value; SctpNet.setInitMsgOption0(fd, maxStreamValue.maxInStreams(), maxStreamValue.maxOutStreams()); } else if (name.equals(SCTP_PRIMARY_ADDR) || name.equals(SCTP_SET_PEER_PRIMARY_ADDR)) { SocketAddress addr = (SocketAddress) value; if (addr == null) throw new IllegalArgumentException("Invalid option value"); Net.checkAddress(addr); InetSocketAddress netAddr = (InetSocketAddress)addr; if (name.equals(SCTP_PRIMARY_ADDR)) { setPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort()); } else { setPeerPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort(), IPv4MappedAddresses()); } } else if (name.equals(SCTP_DISABLE_FRAGMENTS) || name.equals(SCTP_EXPLICIT_COMPLETE) || name.equals(SCTP_FRAGMENT_INTERLEAVE) || name.equals(SCTP_NODELAY) || name.equals(SO_SNDBUF) || name.equals(SO_RCVBUF) || name.equals(SO_LINGER)) { setIntOption(fd, name, value); } else { throw new AssertionError("Unknown socket option"); } }
Example 20
Source File: SctpNet.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
static <T> void setSocketOption(int fd, SctpSocketOption<T> name, T value, int assocId) throws IOException { if (value == null) throw new IllegalArgumentException("Invalid option value"); if (name.equals(SCTP_INIT_MAXSTREAMS)) { InitMaxStreams maxStreamValue = (InitMaxStreams)value; SctpNet.setInitMsgOption0(fd, maxStreamValue.maxInStreams(), maxStreamValue.maxOutStreams()); } else if (name.equals(SCTP_PRIMARY_ADDR) || name.equals(SCTP_SET_PEER_PRIMARY_ADDR)) { SocketAddress addr = (SocketAddress) value; if (addr == null) throw new IllegalArgumentException("Invalid option value"); Net.checkAddress(addr); InetSocketAddress netAddr = (InetSocketAddress)addr; if (name.equals(SCTP_PRIMARY_ADDR)) { setPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort()); } else { setPeerPrimAddrOption0(fd, assocId, netAddr.getAddress(), netAddr.getPort(), IPv4MappedAddresses()); } } else if (name.equals(SCTP_DISABLE_FRAGMENTS) || name.equals(SCTP_EXPLICIT_COMPLETE) || name.equals(SCTP_FRAGMENT_INTERLEAVE) || name.equals(SCTP_NODELAY) || name.equals(SO_SNDBUF) || name.equals(SO_RCVBUF) || name.equals(SO_LINGER)) { setIntOption(fd, name, value); } else { throw new AssertionError("Unknown socket option"); } }