cleanup
[org.ibex.jinetd.git] / src / org / ibex / jinetd / Listener.java
index 7fb4d72..a645cc6 100644 (file)
@@ -13,6 +13,7 @@ import org.ibex.io.*;
  */
 public interface Listener {
     
-    public void accept(Connection c);
+    /** returns false if the connection was not handled */
+    public boolean accept(Connection c);
 
 }