예제 #1
0
 public final UnixSocketAddress getRemoteSocketAddress() {
   if (!isConnected()) {
     return null;
   }
   return remoteAddress != null ? remoteAddress : (remoteAddress = Common.getpeername(getFD()));
 }