1 26 27 28 package org.objectweb.jonathan.apis.protocols.ip; 29 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 32 35 public interface TcpIpSrvConnectionFactory { 36 37 45 IpConnection newSrvConnection(IpSession session) 46 throws JonathanException; 47 48 49 53 int getPort(); 54 55 56 60 String getHostName(); 61 62 63 66 void close(); 67 } 68 69 70 | Popular Tags |