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