Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/NetErrors.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/net:$Id$
0002 // Author: Fons Rademakers   11/08/97
0003 
0004 /*************************************************************************
0005  * Copyright (C) 1995-2003, Rene Brun and Fons Rademakers.               *
0006  * All rights reserved.                                                  *
0007  *                                                                       *
0008  * For the licensing terms see $ROOTSYS/LICENSE.                         *
0009  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
0010  *************************************************************************/
0011 
0012 #ifndef ROOT_NetErrors
0013 #define ROOT_NetErrors
0014 
0015 
0016 //////////////////////////////////////////////////////////////////////////
0017 //                                                                      //
0018 // NetErrors                                                            //
0019 //                                                                      //
0020 // This header file defines error codes generated by rootd/proofd.      //
0021 //                                                                      //
0022 //////////////////////////////////////////////////////////////////////////
0023 
0024 #include "RtypesCore.h"
0025 
0026 enum ERootdErrors {
0027    kErrUndef,
0028    kErrNoFile,
0029    kErrBadFile,
0030    kErrFileExists,
0031    kErrNoAccess,
0032    kErrFileOpen,
0033    kErrFileWriteOpen,
0034    kErrFileReadOpen,
0035    kErrNoSpace,
0036    kErrBadOp,
0037    kErrBadMess,
0038    kErrFilePut,
0039    kErrFileGet,
0040    kErrNoUser,
0041    kErrNoAnon,
0042    kErrBadUser,
0043    kErrNoHome,
0044    kErrNoPasswd,
0045    kErrBadPasswd,
0046    kErrNoSRP,
0047    kErrFatal,
0048    kErrRestartSeek,
0049    kErrNotAllowed,
0050    kErrConnectionRefused,
0051    kErrAuthNotOK,
0052    kErrWrongUser,
0053    kErrNoPipeInfo,
0054    kErrNoChangePermission,
0055    kErrBadRtag,
0056    kErrNoPassHEquNoFiles,
0057    kErrNoPassHEquBadFiles,
0058    kErrNoPassHEquFailed,
0059    kErrBadPassHEquNoFiles,
0060    kErrBadPassHEquBadFiles,
0061    kErrBadPassHEquFailed,
0062    kErrBadRtagHEquNoFiles,
0063    kErrBadRtagHEquBadFiles,
0064    kErrBadRtagHEquFailed,
0065    kErrBadPwdFile,
0066    kErrBadPwdFileHEquNoFiles,
0067    kErrBadPwdFileHEquBadFiles,
0068    kErrBadPwdFileHEquFailed,
0069    kErrError
0070 };
0071 
0072 R__EXTERN const char *gRootdErrStr[];
0073 
0074 #endif