xref: /csrg-svn/usr.bin/uucp/libuu/uucpdefs.c (revision 62386)
148652Sbostic /*-
2*62386Sbostic  * Copyright (c) 1985, 1993
3*62386Sbostic  *	The Regents of the University of California.  All rights reserved.
448652Sbostic  *
548652Sbostic  * %sccs.include.proprietary.c%
648652Sbostic  */
748652Sbostic 
813678Ssam #ifndef lint
9*62386Sbostic static char sccsid[] = "@(#)uucpdefs.c	8.1 (Berkeley) 06/06/93";
1048652Sbostic #endif /* not lint */
1113678Ssam 
1213678Ssam #include "uucp.h"
1337931Sbostic #include "pathnames.h"
1413678Ssam 
1517844Sralph char Progname[64];
1613678Ssam int Ifn, Ofn;
1725141Sbloom char RRmtname[MAXFULLNAME];
1818625Sralph char *Rmtname = RRmtname;
1917844Sralph char User[128];
2013678Ssam char Loginuser[16];
2123684Sbloom char Myname[MAXBASENAME+1];
2213678Ssam char Wrkdir[WKDSIZE];
2313678Ssam 
2413678Ssam char *Spool = SPOOL;
2517844Sralph char DLocal[64];
2617844Sralph char DLocalX[64];
2713678Ssam int Debug = 0;
2823684Sbloom time_t Retrytime;
2917844Sralph short Usrf = 0;			/* Uustat global flag */
3017844Sralph int IsTcpIp = 0;	/* 1 == TCP/IP connection, else 0.  kludge to suppress ioctl */
3117844Sralph char MaxGrade = '\177';
3218625Sralph char DefMaxGrade = '\177';
3317844Sralph int nologinflag = 0;
3437931Sbostic char NOLOGIN[] = _PATH_NOLOGIN;
3517844Sralph 
3617844Sralph /* Save some data space */
3737931Sbostic char DEVNULL[] = _PATH_DEVNULL;
3817844Sralph char CANTOPEN[] = "CAN'T OPEN";
3917844Sralph char _FAILED[] = "FAILED";
40