Java Socket Create createSocketAddress()

Here you can find the source of createSocketAddress()

Description

create Socket Address

License

Apache License

Declaration

public static SocketAddress createSocketAddress() 

Method Source Code

//package com.java2s;
/*//from  w w  w .ja  v  a  2 s.  c  o m
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.net.InetSocketAddress;

import java.net.SocketAddress;

public class Main {
    public static final String HOST = System.getProperty("org.wildfly.openssl.test.host", "localhost");
    public static final int PORT = Integer.parseInt(System.getProperty("org.wildfly.openssl.test.port", "7677"));

    public static SocketAddress createSocketAddress() {
        return new InetSocketAddress(HOST, PORT);
    }
}

Related

  1. createSocket(String host, int port)
  2. createSocket(String[] hostPort)
  3. createSocketAddr(String addr)
  4. createSocketAddr(String target)
  5. createSocketAddr(String target)
  6. createSocketAddress(String server)
  7. createSocketAddrForHost(String hostName, int port)
  8. createSocketServer(int port)
  9. getSocket()