licensing update to APSL 2.0
[org.ibex.jinetd.git] / src / org / ibex / jinetd / Worker.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 org.ibex.util.*;
7 import org.ibex.io.*;
8 import java.net.*;
9 import java.io.*;
10 import java.util.*;
11
12 public interface Worker {
13     public void handleRequest(Connection c);
14 }
15
16
17
18