Dr Andrew Scott G7VAV

My photo
 
April 2024
Mo Tu We Th Fr Sa Su
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 1 2 3 4 5
6 7 8 9 10 11 12


sysexits.h
001: /*
002:  * Copyright (c) 1987, 1993
003:  *      The Regents of the University of California.  All rights reserved.
004:  *
005:  * Redistribution and use in source and binary forms, with or without
006:  * modification, are permitted provided that the following conditions
007:  * are met:
008:  * 1. Redistributions of source code must retain the above copyright
009:  *    notice, this list of conditions and the following disclaimer.
010:  * 2. Redistributions in binary form must reproduce the above copyright
011:  *    notice, this list of conditions and the following disclaimer in the
012:  *    documentation and/or other materials provided with the distribution.
013:  * 4. Neither the name of the University nor the names of its contributors
014:  *    may be used to endorse or promote products derived from this software
015:  *    without specific prior written permission.
016:  *
017:  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
018:  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
019:  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
020:  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
021:  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
022:  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
023:  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
024:  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
025:  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
026:  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
027:  * SUCH DAMAGE.
028:  *
029:  *      @(#)sysexits.h  8.1 (Berkeley) 6/2/93
030:  */
031: 
032: #ifndef _SYSEXITS_H
033: #define _SYSEXITS_H 1
034: 
035: /*
036:  *  SYSEXITS.H -- Exit status codes for system programs.
037:  *
038:  *      This include file attempts to categorize possible error
039:  *      exit statuses for system programs, notably delivermail
040:  *      and the Berkeley network.
041:  *
042:  *      Error numbers begin at EX__BASE to reduce the possibility of
043:  *      clashing with other exit statuses that random programs may
044:  *      already return.  The meaning of the codes is approximately
045:  *      as follows:
046:  *
047:  *      EX_USAGE -- The command was used incorrectly, e.g., with
048:  *              the wrong number of arguments, a bad flag, a bad
049:  *              syntax in a parameter, or whatever.
050:  *      EX_DATAERR -- The input data was incorrect in some way.
051:  *              This should only be used for user's data & not
052:  *              system files.
053:  *      EX_NOINPUT -- An input file (not a system file) did not
054:  *              exist or was not readable.  This could also include
055:  *              errors like "No message" to a mailer (if it cared
056:  *              to catch it).
057:  *      EX_NOUSER -- The user specified did not exist.  This might
058:  *              be used for mail addresses or remote logins.
059:  *      EX_NOHOST -- The host specified did not exist.  This is used
060:  *              in mail addresses or network requests.
061:  *      EX_UNAVAILABLE -- A service is unavailable.  This can occur
062:  *              if a support program or file does not exist.  This
063:  *              can also be used as a catchall message when something
064:  *              you wanted to do doesn't work, but you don't know
065:  *              why.
066:  *      EX_SOFTWARE -- An internal software error has been detected.
067:  *              This should be limited to non-operating system related
068:  *              errors as possible.
069:  *      EX_OSERR -- An operating system error has been detected.
070:  *              This is intended to be used for such things as "cannot
071:  *              fork", "cannot create pipe", or the like.  It includes
072:  *              things like getuid returning a user that does not
073:  *              exist in the passwd file.
074:  *      EX_OSFILE -- Some system file (e.g., /etc/passwd, /etc/utmp,
075:  *              etc.) does not exist, cannot be opened, or has some
076:  *              sort of error (e.g., syntax error).
077:  *      EX_CANTCREAT -- A (user specified) output file cannot be
078:  *              created.
079:  *      EX_IOERR -- An error occurred while doing I/O on some file.
080:  *      EX_TEMPFAIL -- temporary failure, indicating something that
081:  *              is not really an error.  In sendmail, this means
082:  *              that a mailer (e.g.) could not create a connection,
083:  *              and the request should be reattempted later.
084:  *      EX_PROTOCOL -- the remote system returned something that
085:  *              was "not possible" during a protocol exchange.
086:  *      EX_NOPERM -- You did not have sufficient permission to
087:  *              perform the operation.  This is not intended for
088:  *              file system problems, which should use NOINPUT or
089:  *              CANTCREAT, but rather for higher level permissions.
090:  */
091: 
092: #define EX_OK           0       /* successful termination */
093: 
094: #define EX__BASE        64      /* base value for error messages */
095: 
096: #define EX_USAGE        64      /* command line usage error */
097: #define EX_DATAERR      65      /* data format error */
098: #define EX_NOINPUT      66      /* cannot open input */
099: #define EX_NOUSER       67      /* addressee unknown */
100: #define EX_NOHOST       68      /* host name unknown */
101: #define EX_UNAVAILABLE  69      /* service unavailable */
102: #define EX_SOFTWARE     70      /* internal software error */
103: #define EX_OSERR        71      /* system error (e.g., can't fork) */
104: #define EX_OSFILE       72      /* critical OS file missing */
105: #define EX_CANTCREAT    73      /* can't create (user) output file */
106: #define EX_IOERR        74      /* input/output error */
107: #define EX_TEMPFAIL     75      /* temp failure; user is invited to retry */
108: #define EX_PROTOCOL     76      /* remote error in protocol */
109: #define EX_NOPERM       77      /* permission denied */
110: #define EX_CONFIG       78      /* configuration error */
111: 
112: #define EX__MAX 78      /* maximum listed value */
113: 
114: #endif /* sysexits.h */
115: 


for client 18.222.125.171
© Andrew Scott 2006 - 2024,
All Rights Reserved
http://www.andrew-scott.uk/
Andrew Scott
http://www.andrew-scott.co.uk/