xref: /onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/authuser.h (revision 0:68f95e015346)
1*0Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
2*0Sstevel@tonic-gate 
3*0Sstevel@tonic-gate /****************************************************************************
4*0Sstevel@tonic-gate 
5*0Sstevel@tonic-gate   Copyright (c) 1999,2000 WU-FTPD Development Group.
6*0Sstevel@tonic-gate   All rights reserved.
7*0Sstevel@tonic-gate 
8*0Sstevel@tonic-gate   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
9*0Sstevel@tonic-gate     The Regents of the University of California.
10*0Sstevel@tonic-gate   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
11*0Sstevel@tonic-gate   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
12*0Sstevel@tonic-gate   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
13*0Sstevel@tonic-gate   Portions Copyright (c) 1998 Sendmail, Inc.
14*0Sstevel@tonic-gate   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
15*0Sstevel@tonic-gate   Portions Copyright (c) 1997 by Stan Barber.
16*0Sstevel@tonic-gate   Portions Copyright (c) 1997 by Kent Landfield.
17*0Sstevel@tonic-gate   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
18*0Sstevel@tonic-gate     Free Software Foundation, Inc.
19*0Sstevel@tonic-gate 
20*0Sstevel@tonic-gate   Use and distribution of this software and its source code are governed
21*0Sstevel@tonic-gate   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
22*0Sstevel@tonic-gate 
23*0Sstevel@tonic-gate   If you did not receive a copy of the license, it may be obtained online
24*0Sstevel@tonic-gate   at http://www.wu-ftpd.org/license.html.
25*0Sstevel@tonic-gate 
26*0Sstevel@tonic-gate   $Id: authuser.h,v 1.4 2000/07/01 18:36:28 wuftpd Exp $
27*0Sstevel@tonic-gate 
28*0Sstevel@tonic-gate ****************************************************************************/
29*0Sstevel@tonic-gate #ifndef AUTHUSER_H
30*0Sstevel@tonic-gate #define AUTHUSER_H
31*0Sstevel@tonic-gate 
32*0Sstevel@tonic-gate extern unsigned short auth_tcpport;
33*0Sstevel@tonic-gate 
34*0Sstevel@tonic-gate extern char *auth_xline(register char *user, register int fd, register long unsigned int *in);
35*0Sstevel@tonic-gate 
36*0Sstevel@tonic-gate extern int auth_fd(register int fd, register long unsigned int *in, register short unsigned int *local, register short unsigned int *remote);
37*0Sstevel@tonic-gate 
38*0Sstevel@tonic-gate extern char *auth_tcpuser(register long unsigned int in, register short unsigned int local, register short unsigned int remote);
39*0Sstevel@tonic-gate #endif
40