//
// System.out.println("About to lookup host: " + host);
if (host == null || host.length() == 0 || host.equals("localhost")) {
InetAddress addr = P2PInetAddress.getLocalHost();
answer = new P2PServerSocket(bind.getPort(), getBacklog(), addr);
}
else {
InetAddress addr = P2PInetAddress.getByName(host);
answer = new P2PServerSocket(bind.getPort(), getBacklog(), addr);
}
/*
if (addr.equals(P2PInetAddress.getLocalHost())) {
answer = new P2PServerSocket(bind.getPort(), BACKLOG);
}