Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
alt-nodejs6 /
root /
usr /
include /
node /
Delete
Unzip
Name
Size
Permission
Date
Action
libplatform
[ DIR ]
drwxr-xr-x
2026-05-01 04:22
ares.h
21.8
KB
-rw-r--r--
2021-09-28 13:05
ares_build.h
4.16
KB
-rw-r--r--
2021-09-28 13:05
ares_rules.h
4.34
KB
-rw-r--r--
2021-09-28 13:05
ares_version.h
652
B
-rw-r--r--
2021-09-28 13:05
common.gypi
14.16
KB
-rw-r--r--
2021-09-28 13:05
config.gypi
3.01
KB
-rw-r--r--
2021-09-28 13:06
nameser.h
8.24
KB
-rw-r--r--
2021-09-28 13:05
node.h
19.2
KB
-rw-r--r--
2021-09-28 13:05
node_api.h
29.52
KB
-rw-r--r--
2021-09-28 13:05
node_api_types.h
3.07
KB
-rw-r--r--
2021-09-28 13:05
node_buffer.h
2.24
KB
-rw-r--r--
2021-09-28 13:05
node_object_wrap.h
2.66
KB
-rw-r--r--
2021-09-28 13:05
node_version.h
2
KB
-rw-r--r--
2021-09-28 13:05
v8-debug.h
10.19
KB
-rw-r--r--
2021-09-28 13:06
v8-experimental.h
1.65
KB
-rw-r--r--
2021-09-28 13:06
v8-platform.h
5.72
KB
-rw-r--r--
2021-09-28 13:06
v8-profiler.h
24.12
KB
-rw-r--r--
2021-09-28 13:06
v8-testing.h
1.05
KB
-rw-r--r--
2021-09-28 13:06
v8-util.h
19.12
KB
-rw-r--r--
2021-09-28 13:06
v8-version.h
773
B
-rw-r--r--
2021-09-28 13:06
v8.h
279.02
KB
-rw-r--r--
2021-09-28 13:06
v8config.h
15.22
KB
-rw-r--r--
2021-09-28 13:06
Save
Rename
#ifndef SRC_NODE_OBJECT_WRAP_H_ #define SRC_NODE_OBJECT_WRAP_H_ #include "v8.h" #include <assert.h> namespace node { class ObjectWrap { public: ObjectWrap() { refs_ = 0; } virtual ~ObjectWrap() { if (persistent().IsEmpty()) return; assert(persistent().IsNearDeath()); persistent().ClearWeak(); persistent().Reset(); } template <class T> static inline T* Unwrap(v8::Local<v8::Object> handle) { assert(!handle.IsEmpty()); assert(handle->InternalFieldCount() > 0); // Cast to ObjectWrap before casting to T. A direct cast from void // to T won't work right when T has more than one base class. void* ptr = handle->GetAlignedPointerFromInternalField(0); ObjectWrap* wrap = static_cast<ObjectWrap*>(ptr); return static_cast<T*>(wrap); } inline v8::Local<v8::Object> handle() { return handle(v8::Isolate::GetCurrent()); } inline v8::Local<v8::Object> handle(v8::Isolate* isolate) { return v8::Local<v8::Object>::New(isolate, persistent()); } inline v8::Persistent<v8::Object>& persistent() { return handle_; } protected: inline void Wrap(v8::Local<v8::Object> handle) { assert(persistent().IsEmpty()); assert(handle->InternalFieldCount() > 0); handle->SetAlignedPointerInInternalField(0, this); persistent().Reset(v8::Isolate::GetCurrent(), handle); MakeWeak(); } inline void MakeWeak(void) { persistent().SetWeak(this, WeakCallback, v8::WeakCallbackType::kParameter); persistent().MarkIndependent(); } /* Ref() marks the object as being attached to an event loop. * Refed objects will not be garbage collected, even if * all references are lost. */ virtual void Ref() { assert(!persistent().IsEmpty()); persistent().ClearWeak(); refs_++; } /* Unref() marks an object as detached from the event loop. This is its * default state. When an object with a "weak" reference changes from * attached to detached state it will be freed. Be careful not to access * the object after making this call as it might be gone! * (A "weak reference" means an object that only has a * persistent handle.) * * DO NOT CALL THIS FROM DESTRUCTOR */ virtual void Unref() { assert(!persistent().IsEmpty()); assert(!persistent().IsWeak()); assert(refs_ > 0); if (--refs_ == 0) MakeWeak(); } int refs_; // ro private: static void WeakCallback( const v8::WeakCallbackInfo<ObjectWrap>& data) { ObjectWrap* wrap = data.GetParameter(); assert(wrap->refs_ == 0); wrap->handle_.Reset(); delete wrap; } v8::Persistent<v8::Object> handle_; }; } // namespace node #endif // SRC_NODE_OBJECT_WRAP_H_