Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
pgsql /
server /
rewrite /
Delete
Unzip
Name
Size
Permission
Date
Action
prs2lock.h
1.04
KB
-rw-r--r--
2021-06-15 13:00
rewriteDefine.h
1.12
KB
-rw-r--r--
2021-06-15 13:00
rewriteHandler.h
771
B
-rw-r--r--
2021-06-15 13:00
rewriteManip.h
2.7
KB
-rw-r--r--
2021-06-15 13:00
rewriteRemove.h
537
B
-rw-r--r--
2021-06-15 13:00
rewriteSupport.h
911
B
-rw-r--r--
2021-06-15 13:00
Save
Rename
/*------------------------------------------------------------------------- * * prs2lock.h * data structures for POSTGRES Rule System II (rewrite rules only) * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/rewrite/prs2lock.h * *------------------------------------------------------------------------- */ #ifndef PRS2LOCK_H #define PRS2LOCK_H #include "access/attnum.h" #include "nodes/pg_list.h" /* * RewriteRule - * holds a info for a rewrite rule * */ typedef struct RewriteRule { Oid ruleId; CmdType event; AttrNumber attrno; Node *qual; List *actions; char enabled; bool isInstead; } RewriteRule; /* * RuleLock - * all rules that apply to a particular relation. Even though we only * have the rewrite rule system left and these are not really "locks", * the name is kept for historical reasons. */ typedef struct RuleLock { int numLocks; RewriteRule **rules; } RuleLock; #endif /* REWRITE_H */