summaryrefslogtreecommitdiff
path: root/clientloop.h
diff options
context:
space:
mode:
Diffstat (limited to 'clientloop.h')
-rw-r--r--clientloop.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/clientloop.h b/clientloop.h
index 3ad72aa55..58a1a7afb 100644
--- a/clientloop.h
+++ b/clientloop.h
@@ -1,4 +1,15 @@
1/* 1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 *
6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
11 */
12/*
2 * Copyright (c) 2001 Markus Friedl. All rights reserved. 13 * Copyright (c) 2001 Markus Friedl. All rights reserved.
3 * 14 *
4 * Redistribution and use in source and binary forms, with or without 15 * Redistribution and use in source and binary forms, with or without
@@ -21,4 +32,8 @@
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 34 */
35
24void clientloop_set_session_ident(int id); 36void clientloop_set_session_ident(int id);
37
38/* Client side main loop for the interactive session. */
39int client_loop(int have_pty, int escape_char, int id);