evcache-core/src/main/java/net/spy/memcached/protocol/ascii/EVCacheAsciiNodeImpl.java [204:213]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public String getSocketChannelLocalAddress() {
      try {
          if(getChannel() != null) {
              return getChannel().getLocalAddress().toString();
          }
      } catch (IOException e) {
          log.error("Exception", e);
      }
      return "NULL";
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



evcache-core/src/main/java/net/spy/memcached/protocol/binary/EVCacheNodeImpl.java [295:304]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public String getSocketChannelLocalAddress() {
        try {
            if(getChannel() != null) {
                return getChannel().getLocalAddress().toString();
            }
        } catch (IOException e) {
            log.error("Exception", e);
        }
        return "NULL";
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



