No empty .Rs/.Re
[netbsd-mini2440.git] / crypto / external / bsd / openssh / dist / serverloop.h
blob09db77f899184a4b07ec559b421bf88e7b4de1b3
1 /* $NetBSD$ */
2 /* $OpenBSD: serverloop.h,v 1.6 2006/03/25 22:22:43 djm Exp $ */
4 /*
5 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
7 * All rights reserved
9 * As far as I am concerned, the code I have written for this software
10 * can be used freely for any purpose. Any derived versions of this
11 * software must be clearly marked as such, and if the derived work is
12 * incompatible with the protocol description in the RFC file, it must be
13 * called by a name other than "ssh" or "Secure Shell".
16 * Performs the interactive session. This handles data transmission between
17 * the client and the program. Note that the notion of stdin, stdout, and
18 * stderr in this function is sort of reversed: this function writes to stdin
19 * (of the child program), and reads from stdout and stderr (of the child
20 * program).
22 #ifndef SERVERLOOP_H
23 #define SERVERLOOP_H
25 void server_loop(pid_t, int, int, int);
26 void server_loop2(Authctxt *);
28 #endif