273
|
1 /*
|
|
2 * Copyright (c) 2012-2013 Christian Plattner. All rights reserved.
|
|
3 * Please refer to the LICENSE.txt for licensing details.
|
|
4 */
|
|
5 package ch.ethz.ssh2;
|
|
6
|
307
|
7 public interface ServerConnectionCallback {
|
|
8 public ServerSessionCallback acceptSession(ServerSession session);
|
273
|
9 }
|