0
|
1 package com.trilead.ssh2.transport;
|
|
2
|
|
3 import java.io.IOException;
|
|
4
|
|
5 /**
|
|
6 * MessageHandler.
|
|
7 *
|
|
8 * @author Christian Plattner, plattner@trilead.com
|
|
9 * @version $Id: MessageHandler.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
|
|
10 */
|
|
11 public interface MessageHandler {
|
|
12 public void handleMessage(byte[] msg, int msglen) throws IOException;
|
|
13 }
|