better listener detection/dispatch
[org.ibex.jinetd.git] / src / org / ibex / jinetd / Listener.java
1 package org.ibex.jinetd;
2 import java.net.*;
3 import org.ibex.io.*;
4
5 /**
6  *  jinetd will scan /jinetd/port/<num>/*.jar for a
7  *  class implementing this interface; instances must
8  *  have public constructors
9  */
10 public interface Listener {
11     
12     public void accept(Connection c);
13
14 }