1 package org.jacorb.orb.factory; 2 3 22 23 35 36 import java.net.*; 37 import java.io.IOException ; 38 39 public interface ServerSocketFactory 40 { 41 42 public ServerSocket createServerSocket ( int port ) 43 throws IOException ; 44 45 53 public ServerSocket createServerSocket( int port, 54 int backlog ) 55 throws IOException ; 56 57 68 public ServerSocket createServerSocket( int port, 69 int backlog, 70 InetAddress ifAddress ) 71 throws IOException ; 72 } 73 | Popular Tags |