ReactOS 0.4.15-dev-7842-g558ab78
clnt_stat.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define RPC_PMAPFAILURE   RPC_RPCBFAILURE
 

Enumerations

enum  clnt_stat {
  RPC_SUCCESS = 0 , RPC_CANTENCODEARGS = 1 , RPC_CANTDECODERES = 2 , RPC_CANTSEND = 3 ,
  RPC_CANTRECV = 4 , RPC_TIMEDOUT = 5 , RPC_INTR = 18 , RPC_UDERROR = 23 ,
  RPC_VERSMISMATCH = 6 , RPC_AUTHERROR = 7 , RPC_PROGUNAVAIL = 8 , RPC_PROGVERSMISMATCH = 9 ,
  RPC_PROCUNAVAIL = 10 , RPC_CANTDECODEARGS = 11 , RPC_SYSTEMERROR = 12 , RPC_UNKNOWNHOST = 13 ,
  RPC_UNKNOWNPROTO = 17 , RPC_UNKNOWNADDR = 19 , RPC_NOBROADCAST = 21 , RPC_RPCBFAILURE = 14 ,
  RPC_PROGNOTREGISTERED = 15 , RPC_N2AXLATEFAILURE = 22 , RPC_TLIERROR = 20 , RPC_FAILED = 16 ,
  RPC_INPROGRESS = 24 , RPC_STALERACHANDLE = 25 , RPC_CANTCONNECT = 26 , RPC_XPRTFAILED = 27 ,
  RPC_CANTCREATESTREAM = 28
}
 

Macro Definition Documentation

◆ RPC_PMAPFAILURE

#define RPC_PMAPFAILURE   RPC_RPCBFAILURE

Definition at line 57 of file clnt_stat.h.

Enumeration Type Documentation

◆ clnt_stat

Enumerator
RPC_SUCCESS 
RPC_CANTENCODEARGS 
RPC_CANTDECODERES 
RPC_CANTSEND 
RPC_CANTRECV 
RPC_TIMEDOUT 
RPC_INTR 
RPC_UDERROR 
RPC_VERSMISMATCH 
RPC_AUTHERROR 
RPC_PROGUNAVAIL 
RPC_PROGVERSMISMATCH 
RPC_PROCUNAVAIL 
RPC_CANTDECODEARGS 
RPC_SYSTEMERROR 
RPC_UNKNOWNHOST 
RPC_UNKNOWNPROTO 
RPC_UNKNOWNADDR 
RPC_NOBROADCAST 
RPC_RPCBFAILURE 
RPC_PROGNOTREGISTERED 
RPC_N2AXLATEFAILURE 
RPC_TLIERROR 
RPC_FAILED 
RPC_INPROGRESS 
RPC_STALERACHANDLE 
RPC_CANTCONNECT 
RPC_XPRTFAILED 
RPC_CANTCREATESTREAM 

Definition at line 21 of file clnt_stat.h.

21 {
22 RPC_SUCCESS = 0, /* call succeeded */
23 /*
24 * local errors
25 */
26 RPC_CANTENCODEARGS = 1, /* can't encode arguments */
27 RPC_CANTDECODERES = 2, /* can't decode results */
28 RPC_CANTSEND = 3, /* failure in sending call */
29 RPC_CANTRECV = 4,
30 /* failure in receiving result */
31 RPC_TIMEDOUT = 5, /* call timed out */
32 RPC_INTR = 18, /* call interrupted */
33 RPC_UDERROR = 23, /* recv got uderr indication */
34 /*
35 * remote errors
36 */
37 RPC_VERSMISMATCH = 6, /* rpc versions not compatible */
38 RPC_AUTHERROR = 7, /* authentication error */
39 RPC_PROGUNAVAIL = 8, /* program not available */
40 RPC_PROGVERSMISMATCH = 9, /* program version mismatched */
41 RPC_PROCUNAVAIL = 10, /* procedure unavailable */
42 RPC_CANTDECODEARGS = 11, /* decode arguments error */
43 RPC_SYSTEMERROR = 12, /* generic "other problem" */
44
45 /*
46 * rpc_call & clnt_create errors
47 */
48 RPC_UNKNOWNHOST = 13, /* unknown host name */
49 RPC_UNKNOWNPROTO = 17, /* unknown protocol */
50 RPC_UNKNOWNADDR = 19, /* Remote address unknown */
51 RPC_NOBROADCAST = 21, /* Broadcasting not supported */
52
53 /*
54 * rpcbind errors
55 */
56 RPC_RPCBFAILURE = 14, /* the pmapper failed in its call */
57#define RPC_PMAPFAILURE RPC_RPCBFAILURE
58 RPC_PROGNOTREGISTERED = 15, /* remote program is not registered */
60 /* Name to address translation failed */
61 /*
62 * Misc error in the TLI library
63 */
64 RPC_TLIERROR = 20,
65 /*
66 * unspecified error
67 */
68 RPC_FAILED = 16,
69 /*
70 * asynchronous errors
71 */
72 RPC_INPROGRESS = 24,
74 RPC_CANTCONNECT = 26, /* couldn't make connection (cots) */
75 RPC_XPRTFAILED = 27, /* received discon from remote (cots) */
76 RPC_CANTCREATESTREAM = 28 /* can't push rpc module (cots) */
77};
@ RPC_TLIERROR
Definition: clnt_stat.h:64
@ RPC_SUCCESS
Definition: clnt_stat.h:22
@ RPC_CANTDECODERES
Definition: clnt_stat.h:27
@ RPC_INPROGRESS
Definition: clnt_stat.h:72
@ RPC_TIMEDOUT
Definition: clnt_stat.h:31
@ RPC_XPRTFAILED
Definition: clnt_stat.h:75
@ RPC_CANTCREATESTREAM
Definition: clnt_stat.h:76
@ RPC_INTR
Definition: clnt_stat.h:32
@ RPC_NOBROADCAST
Definition: clnt_stat.h:51
@ RPC_PROGNOTREGISTERED
Definition: clnt_stat.h:58
@ RPC_AUTHERROR
Definition: clnt_stat.h:38
@ RPC_PROGUNAVAIL
Definition: clnt_stat.h:39
@ RPC_CANTSEND
Definition: clnt_stat.h:28
@ RPC_STALERACHANDLE
Definition: clnt_stat.h:73
@ RPC_FAILED
Definition: clnt_stat.h:68
@ RPC_CANTCONNECT
Definition: clnt_stat.h:74
@ RPC_RPCBFAILURE
Definition: clnt_stat.h:56
@ RPC_UDERROR
Definition: clnt_stat.h:33
@ RPC_CANTDECODEARGS
Definition: clnt_stat.h:42
@ RPC_UNKNOWNADDR
Definition: clnt_stat.h:50
@ RPC_UNKNOWNHOST
Definition: clnt_stat.h:48
@ RPC_CANTRECV
Definition: clnt_stat.h:29
@ RPC_CANTENCODEARGS
Definition: clnt_stat.h:26
@ RPC_N2AXLATEFAILURE
Definition: clnt_stat.h:59
@ RPC_UNKNOWNPROTO
Definition: clnt_stat.h:49
@ RPC_PROGVERSMISMATCH
Definition: clnt_stat.h:40
@ RPC_SYSTEMERROR
Definition: clnt_stat.h:43
@ RPC_PROCUNAVAIL
Definition: clnt_stat.h:41
@ RPC_VERSMISMATCH
Definition: clnt_stat.h:37