licensing update to APSL 2.0
[org.ibex.jinetd.git] / src / org / ibex / jinetd / Listener.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.jinetd;
6 import java.net.*;
7 import org.ibex.io.*;
8
9 /**
10  *  jinetd will scan /jinetd/port/<num>/*.jar for a
11  *  class implementing this interface; instances must
12  *  have public constructors
13  */
14 public interface Listener {
15     
16     public void accept(Connection c);
17
18 }