📄 tcpserversocketfactory.java
字号:
/* * $Id: TcpServerSocketFactory.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.tcp;import org.mule.util.StringUtils;import java.io.IOException;import java.net.InetAddress;import java.net.InetSocketAddress;import java.net.ServerSocket;import java.net.URI;public class TcpServerSocketFactory implements SimpleServerSocketFactory{ public ServerSocket createServerSocket(URI uri, int backlog, Boolean reuse) throws IOException { String host = StringUtils.defaultIfEmpty(uri.getHost(), "localhost"); InetAddress inetAddress = InetAddress.getByName(host); if (inetAddress.equals(InetAddress.getLocalHost()) || inetAddress.isLoopbackAddress() || host.trim().equals("localhost")) { return createServerSocket(uri.getPort(), backlog, reuse); } else { return createServerSocket(inetAddress, uri.getPort(), backlog, reuse); } } public ServerSocket createServerSocket(InetAddress address, int port, int backlog, Boolean reuse) throws IOException { return configure(new ServerSocket(), reuse, new InetSocketAddress(address, port), backlog); } public ServerSocket createServerSocket(int port, int backlog, Boolean reuse) throws IOException { return configure(new ServerSocket(), reuse, new InetSocketAddress(port), backlog); } protected ServerSocket configure(ServerSocket socket, Boolean reuse, InetSocketAddress address, int backlog) throws IOException { if (null != reuse && reuse.booleanValue() != socket.getReuseAddress()) { socket.setReuseAddress(reuse.booleanValue()); } // bind *after* setting so_reuseaddress socket.bind(address, backlog); return socket; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -