Use InetSocketAddress(0) if no localAddress is specified for connect() operation in UDT
This commit is contained in:
parent
eeab6767db
commit
604b359d9e
@ -25,13 +25,12 @@ import io.netty.example.udt.util.UtilConsoleReporter;
|
||||
import io.netty.example.udt.util.UtilThreadFactory;
|
||||
import io.netty.handler.logging.LogLevel;
|
||||
import io.netty.handler.logging.LoggingHandler;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.concurrent.ThreadFactory;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* UDT Byte Stream Client
|
||||
* <p>
|
||||
@ -63,7 +62,7 @@ public class ByteEchoClient {
|
||||
final NioEventLoopGroup connectGroup = new NioEventLoopGroup(1,
|
||||
connectFactory, NioUdtProvider.BYTE_PROVIDER);
|
||||
try {
|
||||
boot.group(connectGroup).localAddress(0)
|
||||
boot.group(connectGroup)
|
||||
.channelFactory(NioUdtProvider.BYTE_CONNECTOR)
|
||||
.handler(new ChannelInitializer<UdtChannel>() {
|
||||
@Override
|
||||
|
@ -25,13 +25,12 @@ import io.netty.example.udt.util.UtilConsoleReporter;
|
||||
import io.netty.example.udt.util.UtilThreadFactory;
|
||||
import io.netty.handler.logging.LogLevel;
|
||||
import io.netty.handler.logging.LoggingHandler;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import java.util.concurrent.ThreadFactory;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* UDT Message Flow client
|
||||
* <p>
|
||||
@ -63,7 +62,7 @@ public class MsgEchoClient {
|
||||
final NioEventLoopGroup connectGroup = new NioEventLoopGroup(1,
|
||||
connectFactory, NioUdtProvider.MESSAGE_PROVIDER);
|
||||
try {
|
||||
boot.group(connectGroup).localAddress(0)
|
||||
boot.group(connectGroup)
|
||||
.channelFactory(NioUdtProvider.MESSAGE_CONNECTOR)
|
||||
.handler(new ChannelInitializer<UdtChannel>() {
|
||||
@Override
|
||||
|
@ -15,24 +15,25 @@
|
||||
*/
|
||||
package io.netty.channel.udt.nio;
|
||||
|
||||
import static java.nio.channels.SelectionKey.*;
|
||||
import com.barchart.udt.TypeUDT;
|
||||
import com.barchart.udt.nio.SocketChannelUDT;
|
||||
import io.netty.buffer.BufType;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.channel.Channel;
|
||||
import io.netty.channel.ChannelException;
|
||||
import io.netty.channel.ChannelMetadata;
|
||||
import io.netty.channel.socket.nio.AbstractNioByteChannel;
|
||||
import io.netty.logging.InternalLogger;
|
||||
import io.netty.logging.InternalLoggerFactory;
|
||||
import io.netty.channel.udt.DefaultUdtChannelConfig;
|
||||
import io.netty.channel.udt.UdtChannel;
|
||||
import io.netty.channel.udt.UdtChannelConfig;
|
||||
import io.netty.logging.InternalLogger;
|
||||
import io.netty.logging.InternalLoggerFactory;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.SocketAddress;
|
||||
import java.nio.channels.SelectionKey;
|
||||
|
||||
import com.barchart.udt.TypeUDT;
|
||||
import com.barchart.udt.nio.SocketChannelUDT;
|
||||
import static java.nio.channels.SelectionKey.*;
|
||||
|
||||
/**
|
||||
* Byte Channel Connector for UDT Streams.
|
||||
@ -104,7 +105,7 @@ public class NioUdtByteConnectorChannel extends AbstractNioByteChannel
|
||||
@Override
|
||||
protected boolean doConnect(final SocketAddress remoteAddress,
|
||||
final SocketAddress localAddress) throws Exception {
|
||||
doBind(localAddress);
|
||||
doBind(localAddress != null? localAddress : new InetSocketAddress(0));
|
||||
boolean success = false;
|
||||
try {
|
||||
final boolean connected = javaChannel().connect(remoteAddress);
|
||||
|
@ -15,7 +15,8 @@
|
||||
*/
|
||||
package io.netty.channel.udt.nio;
|
||||
|
||||
import static java.nio.channels.SelectionKey.*;
|
||||
import com.barchart.udt.TypeUDT;
|
||||
import com.barchart.udt.nio.SocketChannelUDT;
|
||||
import io.netty.buffer.BufType;
|
||||
import io.netty.buffer.ByteBuf;
|
||||
import io.netty.buffer.MessageBuf;
|
||||
@ -23,18 +24,18 @@ import io.netty.channel.Channel;
|
||||
import io.netty.channel.ChannelException;
|
||||
import io.netty.channel.ChannelMetadata;
|
||||
import io.netty.channel.socket.nio.AbstractNioMessageChannel;
|
||||
import io.netty.logging.InternalLogger;
|
||||
import io.netty.logging.InternalLoggerFactory;
|
||||
import io.netty.channel.udt.DefaultUdtChannelConfig;
|
||||
import io.netty.channel.udt.UdtChannel;
|
||||
import io.netty.channel.udt.UdtChannelConfig;
|
||||
import io.netty.channel.udt.UdtMessage;
|
||||
import io.netty.logging.InternalLogger;
|
||||
import io.netty.logging.InternalLoggerFactory;
|
||||
|
||||
import java.net.InetSocketAddress;
|
||||
import java.net.SocketAddress;
|
||||
import java.nio.channels.SelectionKey;
|
||||
|
||||
import com.barchart.udt.TypeUDT;
|
||||
import com.barchart.udt.nio.SocketChannelUDT;
|
||||
import static java.nio.channels.SelectionKey.*;
|
||||
|
||||
/**
|
||||
* Message Connector for UDT Datagrams.
|
||||
@ -108,7 +109,7 @@ public class NioUdtMessageConnectorChannel extends AbstractNioMessageChannel
|
||||
@Override
|
||||
protected boolean doConnect(final SocketAddress remoteAddress,
|
||||
final SocketAddress localAddress) throws Exception {
|
||||
doBind(localAddress);
|
||||
doBind(localAddress != null? localAddress : new InetSocketAddress(0));
|
||||
boolean success = false;
|
||||
try {
|
||||
final boolean connected = javaChannel().connect(remoteAddress);
|
||||
|
Loading…
Reference in New Issue
Block a user