• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2006-2011 Christian Plattner. All rights reserved.
3  * Please refer to the LICENSE.txt for licensing details.
4  */
5 package ch.ethz.ssh2.transport;
6 
7 import java.io.IOException;
8 
9 /**
10  * MessageHandler.
11  *
12  * @author Christian Plattner
13  * @version 2.50, 03/15/10
14  */
15 public interface MessageHandler
16 {
handleMessage(byte[] msg, int msglen)17 	public void handleMessage(byte[] msg, int msglen) throws IOException;
18 }
19