01: package org.apache.mina.transport.socket;
02:
03: import java.net.InetSocketAddress;
04:
05: import org.apache.mina.common.IoSession;
06:
07: public interface SocketSession extends IoSession {
08: SocketSessionConfig getConfig();
09:
10: InetSocketAddress getRemoteAddress();
11:
12: InetSocketAddress getLocalAddress();
13:
14: InetSocketAddress getServiceAddress();
15: }
|