Merge modified --with-rsh patch: we now determine the default
[rsync/rsync.git] / errcode.h
CommitLineData
af642a61
MP
1/* -*- c-file-style: "linux"; -*-
2
3 Copyright (C) 1998-2000 by Andrew Tridgell
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20/*
21 * error codes returned by rsync. If you change these, please also update the
22 * string mappings in log.c
23 */
65417579
AT
24
25#define RERR_SYNTAX 1 /* syntax or usage error */
26#define RERR_PROTOCOL 2 /* protocol incompatibility */
27#define RERR_FILESELECT 3 /* errors selecting input/output files, dirs */
ec9df380 28#define RERR_UNSUPPORTED 4 /* requested action not supported */
65417579
AT
29
30#define RERR_SOCKETIO 10 /* error in socket IO */
31#define RERR_FILEIO 11 /* error in file IO */
32#define RERR_STREAMIO 12 /* error in rsync protocol data stream */
33#define RERR_MESSAGEIO 13 /* errors with program diagnostics */
34#define RERR_IPC 14 /* error in IPC code */
35
36#define RERR_SIGNAL 20 /* status returned when sent SIGUSR1, SIGINT */
37#define RERR_WAITCHILD 21 /* some error returned by waitpid() */
38#define RERR_MALLOC 22 /* error allocating core memory buffers */
19b27a48 39#define RERR_PARTIAL 23 /* partial transfer */
65417579
AT
40
41#define RERR_TIMEOUT 30 /* timeout in data send/receive */
19b27a48
AT
42
43/* Although it doesn't seem to be specified anywhere,
44 * ssh and the shell seem to return these values:
45 *
46 * 124 if the command exited with status 255
47 * 125 if the command is killed by a signal
48 * 126 if the command cannot be run
49 * 127 if the command is not found
50 *
51 * and we could use this to give a better explanation if the remote
52 * command is not found.
53 */
54#define RERR_CMD_FAILED 124
55#define RERR_CMD_KILLED 125
56#define RERR_CMD_RUN 126
57#define RERR_CMD_NOTFOUND 127