2008-02-27 20:56:47 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* libcsync -- a library to sync a directory with another
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 by Andreas Schneider <mail@cynapses.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _CSYNC_MACROS_H
|
|
|
|
#define _CSYNC_MACROS_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
/* How many elements there are in a static array */
|
|
|
|
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
|
|
|
|
|
2013-03-08 21:44:22 +04:00
|
|
|
/* Some special custom errno values to report bugs properly. The BASE value
|
|
|
|
* should always be larger than the highest system errno. */
|
|
|
|
#define CSYNC_CUSTOM_ERRNO_BASE 10000
|
|
|
|
|
|
|
|
#define ERRNO_GENERAL_ERROR CSYNC_CUSTOM_ERRNO_BASE+2
|
|
|
|
#define ERRNO_LOOKUP_ERROR CSYNC_CUSTOM_ERRNO_BASE+3
|
|
|
|
#define ERRNO_USER_UNKNOWN_ON_SERVER CSYNC_CUSTOM_ERRNO_BASE+4
|
|
|
|
#define ERRNO_PROXY_AUTH CSYNC_CUSTOM_ERRNO_BASE+5
|
|
|
|
#define ERRNO_CONNECT CSYNC_CUSTOM_ERRNO_BASE+6
|
|
|
|
#define ERRNO_TIMEOUT CSYNC_CUSTOM_ERRNO_BASE+7
|
|
|
|
#define ERRNO_PRECONDITION CSYNC_CUSTOM_ERRNO_BASE+8
|
|
|
|
#define ERRNO_RETRY CSYNC_CUSTOM_ERRNO_BASE+9
|
|
|
|
#define ERRNO_REDIRECT CSYNC_CUSTOM_ERRNO_BASE+10
|
|
|
|
#define ERRNO_WRONG_CONTENT CSYNC_CUSTOM_ERRNO_BASE+11
|
|
|
|
#define ERRNO_TIMEDELTA CSYNC_CUSTOM_ERRNO_BASE+12
|
|
|
|
#define ERRNO_ERROR_STRING CSYNC_CUSTOM_ERRNO_BASE+13
|
|
|
|
#define ERRNO_SERVICE_UNAVAILABLE CSYNC_CUSTOM_ERRNO_BASE+14
|
|
|
|
#define ERRNO_QUOTA_EXCEEDED CSYNC_CUSTOM_ERRNO_BASE+15
|
|
|
|
|
2008-02-27 20:56:47 +03:00
|
|
|
#endif /* _CSYNC_MACROS_H */
|
2009-05-13 12:12:07 +04:00
|
|
|
/* vim: set ft=c.doxygen ts=8 sw=2 et cindent: */
|