Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.216.219.130
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
include /
nspr4 /
Delete
Unzip
Name
Size
Permission
Date
Action
obsolete
[ DIR ]
drwxr-xr-x
2021-11-09 08:47
private
[ DIR ]
drwxr-xr-x
2021-11-09 08:47
nspr.h
1016
B
-rw-r--r--
2021-06-30 21:43
plarena.h
11.37
KB
-rw-r--r--
2021-06-30 21:43
plarenas.h
565
B
-rw-r--r--
2021-06-30 21:43
plbase64.h
2.82
KB
-rw-r--r--
2021-06-30 21:43
plerror.h
880
B
-rw-r--r--
2021-06-30 21:43
plgetopt.h
4.6
KB
-rw-r--r--
2021-06-30 21:43
plhash.h
4.72
KB
-rw-r--r--
2021-06-30 21:43
plstr.h
13.11
KB
-rw-r--r--
2021-06-30 21:43
pratom.h
5.77
KB
-rw-r--r--
2021-06-30 21:43
prbit.h
5.15
KB
-rw-r--r--
2021-06-30 21:43
prclist.h
2.42
KB
-rw-r--r--
2021-06-30 21:43
prcmon.h
2.09
KB
-rw-r--r--
2021-06-30 21:43
prcountr.h
14.41
KB
-rw-r--r--
2021-06-30 21:43
prcpucfg.h
33.59
KB
-rw-r--r--
2021-06-30 21:43
prcvar.h
3.51
KB
-rw-r--r--
2021-06-30 21:43
prdtoa.h
1.56
KB
-rw-r--r--
2021-06-30 21:43
prenv.h
6.06
KB
-rw-r--r--
2021-06-30 21:43
prerr.h
8.11
KB
-rw-r--r--
2021-06-30 21:43
prerror.h
11.24
KB
-rw-r--r--
2021-06-30 21:43
prinet.h
3.02
KB
-rw-r--r--
2021-06-30 21:43
prinit.h
6.44
KB
-rw-r--r--
2021-06-30 21:43
prinrval.h
5.21
KB
-rw-r--r--
2021-06-30 21:43
prio.h
75.63
KB
-rw-r--r--
2021-06-30 21:43
pripcsem.h
2.58
KB
-rw-r--r--
2021-06-30 21:43
prlink.h
8.16
KB
-rw-r--r--
2021-06-30 21:43
prlock.h
3.73
KB
-rw-r--r--
2021-06-30 21:43
prlog.h
6.88
KB
-rw-r--r--
2021-06-30 21:43
prlong.h
12.46
KB
-rw-r--r--
2021-06-30 21:43
prmem.h
4.65
KB
-rw-r--r--
2021-06-30 21:43
prmon.h
3.16
KB
-rw-r--r--
2021-06-30 21:43
prmwait.h
15.88
KB
-rw-r--r--
2021-06-30 21:43
prnetdb.h
19.08
KB
-rw-r--r--
2021-06-30 21:43
prolock.h
4.53
KB
-rw-r--r--
2021-06-30 21:43
prpdce.h
2.42
KB
-rw-r--r--
2021-06-30 21:43
prprf.h
4.4
KB
-rw-r--r--
2021-06-30 21:43
prproces.h
2.25
KB
-rw-r--r--
2021-06-30 21:43
prrng.h
2.4
KB
-rw-r--r--
2021-06-30 21:43
prrwlock.h
2.79
KB
-rw-r--r--
2021-06-30 21:43
prshm.h
8.27
KB
-rw-r--r--
2021-06-30 21:43
prshma.h
6.97
KB
-rw-r--r--
2021-06-30 21:43
prsystem.h
2.63
KB
-rw-r--r--
2021-06-30 21:43
prthread.h
9.85
KB
-rw-r--r--
2021-06-30 21:43
prtime.h
10
KB
-rw-r--r--
2021-06-30 21:43
prtpool.h
2.32
KB
-rw-r--r--
2021-06-30 21:43
prtrace.h
20.19
KB
-rw-r--r--
2021-06-30 21:43
prtypes.h
19.42
KB
-rw-r--r--
2021-06-30 21:43
prvrsion.h
3.46
KB
-rw-r--r--
2021-06-30 21:43
prwin16.h
5.86
KB
-rw-r--r--
2021-06-30 21:43
Save
Rename
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #ifndef plhash_h___ #define plhash_h___ /* * API to portable hash table code. */ #include <stdio.h> #include "prtypes.h" PR_BEGIN_EXTERN_C typedef struct PLHashEntry PLHashEntry; typedef struct PLHashTable PLHashTable; typedef PRUint32 PLHashNumber; #define PL_HASH_BITS 32 /* Number of bits in PLHashNumber */ typedef PLHashNumber (PR_CALLBACK *PLHashFunction)(const void *key); typedef PRIntn (PR_CALLBACK *PLHashComparator)(const void *v1, const void *v2); typedef PRIntn (PR_CALLBACK *PLHashEnumerator)(PLHashEntry *he, PRIntn i, void *arg); /* Flag bits in PLHashEnumerator's return value */ #define HT_ENUMERATE_NEXT 0 /* continue enumerating entries */ #define HT_ENUMERATE_STOP 1 /* stop enumerating entries */ #define HT_ENUMERATE_REMOVE 2 /* remove and free the current entry */ #define HT_ENUMERATE_UNHASH 4 /* just unhash the current entry */ typedef struct PLHashAllocOps { void * (PR_CALLBACK *allocTable)(void *pool, PRSize size); void (PR_CALLBACK *freeTable)(void *pool, void *item); PLHashEntry * (PR_CALLBACK *allocEntry)(void *pool, const void *key); void (PR_CALLBACK *freeEntry)(void *pool, PLHashEntry *he, PRUintn flag); } PLHashAllocOps; #define HT_FREE_VALUE 0 /* just free the entry's value */ #define HT_FREE_ENTRY 1 /* free value and entire entry */ struct PLHashEntry { PLHashEntry *next; /* hash chain linkage */ PLHashNumber keyHash; /* key hash function result */ const void *key; /* ptr to opaque key */ void *value; /* ptr to opaque value */ }; struct PLHashTable { PLHashEntry **buckets; /* vector of hash buckets */ PRUint32 nentries; /* number of entries in table */ PRUint32 shift; /* multiplicative hash shift */ PLHashFunction keyHash; /* key hash function */ PLHashComparator keyCompare; /* key comparison function */ PLHashComparator valueCompare; /* value comparison function */ const PLHashAllocOps *allocOps; /* allocation operations */ void *allocPriv; /* allocation private data */ #ifdef HASHMETER PRUint32 nlookups; /* total number of lookups */ PRUint32 nsteps; /* number of hash chains traversed */ PRUint32 ngrows; /* number of table expansions */ PRUint32 nshrinks; /* number of table contractions */ #endif }; /* * Create a new hash table. * If allocOps is null, use default allocator ops built on top of malloc(). */ PR_EXTERN(PLHashTable *) PL_NewHashTable(PRUint32 numBuckets, PLHashFunction keyHash, PLHashComparator keyCompare, PLHashComparator valueCompare, const PLHashAllocOps *allocOps, void *allocPriv); PR_EXTERN(void) PL_HashTableDestroy(PLHashTable *ht); /* Higher level access methods */ PR_EXTERN(PLHashEntry *) PL_HashTableAdd(PLHashTable *ht, const void *key, void *value); PR_EXTERN(PRBool) PL_HashTableRemove(PLHashTable *ht, const void *key); PR_EXTERN(void *) PL_HashTableLookup(PLHashTable *ht, const void *key); PR_EXTERN(void *) PL_HashTableLookupConst(PLHashTable *ht, const void *key); PR_EXTERN(PRIntn) PL_HashTableEnumerateEntries(PLHashTable *ht, PLHashEnumerator f, void *arg); /* General-purpose C string hash function. */ PR_EXTERN(PLHashNumber) PL_HashString(const void *key); /* Compare strings using strcmp(), return true if equal. */ PR_EXTERN(PRIntn) PL_CompareStrings(const void *v1, const void *v2); /* Stub function just returns v1 == v2 */ PR_EXTERN(PRIntn) PL_CompareValues(const void *v1, const void *v2); /* Low level access methods */ PR_EXTERN(PLHashEntry **) PL_HashTableRawLookup(PLHashTable *ht, PLHashNumber keyHash, const void *key); PR_EXTERN(PLHashEntry **) PL_HashTableRawLookupConst(PLHashTable *ht, PLHashNumber keyHash, const void *key); PR_EXTERN(PLHashEntry *) PL_HashTableRawAdd(PLHashTable *ht, PLHashEntry **hep, PLHashNumber keyHash, const void *key, void *value); PR_EXTERN(void) PL_HashTableRawRemove(PLHashTable *ht, PLHashEntry **hep, PLHashEntry *he); /* This can be trivially implemented using PL_HashTableEnumerateEntries. */ PR_EXTERN(PRIntn) PL_HashTableDump(PLHashTable *ht, PLHashEnumerator dump, FILE *fp); PR_END_EXTERN_C #endif /* plhash_h___ */