FileDocCategorySizeDatePackage
ReverseLookup.javaAPI DocExample750Sun Dec 12 10:51:50 GMT 2004None

ReverseLookup

public class ReverseLookup extends Thread

Fields Summary
private String
entry
ThreadedWeblog
log
Constructors Summary
public ReverseLookup(String entry, ThreadedWeblog log)

    this.entry = entry;
    this.log = log;
  
Methods Summary
public voidrun()

    
    int index = entry.indexOf(' ", 0);
    String remoteHost = entry.substring(0, index);
    String theRest = entry.substring(index, entry.length());
    
    try {
      remoteHost = InetAddress.getByName(remoteHost).getHostName();
    }
    catch (Exception e) {
      // remoteHost remains in dotted quad format
    }
    
    try {
      log.log(remoteHost + theRest);
    }
    catch (IOException e) {
    }