annotate src/com/trilead/ssh2/transport/MessageHandler.java @ 340:82d127ae1550
ganymed
fix pubkey display; better layout for generate pub keys
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Thu, 31 Jul 2014 15:53:40 -0700 |
parents |
0ce5cc452d02 |
children |
|
rev |
line source |
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 }
|