comparison src/ch/ethz/ssh2/ServerConnectionCallback.java @ 308:42b15aaa7ac7 ganymed

merge
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 14:21:50 -0700
parents 071eccdff8ea
children
comparison
equal deleted inserted replaced
306:90e47d99ea54 308:42b15aaa7ac7
2 * Copyright (c) 2012-2013 Christian Plattner. All rights reserved. 2 * Copyright (c) 2012-2013 Christian Plattner. All rights reserved.
3 * Please refer to the LICENSE.txt for licensing details. 3 * Please refer to the LICENSE.txt for licensing details.
4 */ 4 */
5 package ch.ethz.ssh2; 5 package ch.ethz.ssh2;
6 6
7 public interface ServerConnectionCallback 7 public interface ServerConnectionCallback {
8 { 8 public ServerSessionCallback acceptSession(ServerSession session);
9 public ServerSessionCallback acceptSession(ServerSession session);
10 } 9 }