Home | History | Annotate | Download | only in ssh2
      1 /*
      2  * Copyright (c) 2011 David Kocher. All rights reserved.
      3  * Please refer to the LICENSE.txt for licensing details.
      4  */
      5 package ch.ethz.ssh2;
      6 
      7 /**
      8  * @version $Id:$
      9  */
     10 public interface PacketListener {
     11     void read(String packet);
     12 
     13     void write(String packet);
     14 }
     15