comparison src/com/trilead/ssh2/transport/MessageHandler.java @ 0:0ce5cc452d02

initial version
author Carl Byington <carl@five-ten-sg.com>
date Thu, 22 May 2014 10:41:19 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0ce5cc452d02
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 }