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.119.131.131
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
engine.io /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
parser-v3
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
transports
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
transports-uws
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
engine.io.d.ts
966
B
-rw-rw-r--
2022-08-30 11:49
engine.io.js
2.01
KB
-rw-rw-r--
2022-08-30 11:49
server.d.ts
6.34
KB
-rw-rw-r--
2022-08-30 11:49
server.js
21.07
KB
-rw-rw-r--
2022-08-30 11:49
socket.d.ts
3.41
KB
-rw-rw-r--
2022-08-30 11:49
socket.js
15.39
KB
-rw-rw-r--
2022-08-30 11:49
transport.d.ts
1.84
KB
-rw-rw-r--
2022-08-30 11:49
transport.js
2.74
KB
-rw-rw-r--
2022-08-30 11:49
userver.d.ts
1.36
KB
-rw-rw-r--
2022-08-30 11:49
userver.js
7.26
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/// <reference types="node" /> import { EventEmitter } from "events"; import { IncomingMessage } from "http"; import { Packet } from "engine.io-parser"; export declare abstract class Transport extends EventEmitter { sid: string; writable: boolean; protocol: number; protected _readyState: string; protected discarded: boolean; protected parser: any; protected req: IncomingMessage & { cleanup: Function; }; protected supportsBinary: boolean; get readyState(): string; set readyState(state: string); /** * Transport constructor. * * @param {http.IncomingMessage} request * @api public */ constructor(req: any); /** * Flags the transport as discarded. * * @api private */ discard(): void; /** * Called with an incoming HTTP request. * * @param {http.IncomingMessage} request * @api protected */ protected onRequest(req: any): void; /** * Closes the transport. * * @api private */ close(fn?: any): void; /** * Called with a transport error. * * @param {String} message error * @param {Object} error description * @api protected */ protected onError(msg: string, desc?: any): void; /** * Called with parsed out a packets from the data stream. * * @param {Object} packet * @api protected */ protected onPacket(packet: Packet): void; /** * Called with the encoded packet data. * * @param {String} data * @api protected */ protected onData(data: any): void; /** * Called upon transport close. * * @api protected */ protected onClose(): void; abstract get supportsFraming(): any; abstract get name(): any; abstract send(packets: any): any; abstract doClose(fn?: any): any; }