From 6555fb80fdd8f6a5d201efadec3189d1244830a0 Mon Sep 17 00:00:00 2001 From: Nevena Bojovic Date: Tue, 1 Mar 2022 22:05:25 +0100 Subject: Izbrisala bin, obj i node-modules. --- .../socks/typings/common/constants.d.ts | 150 --------------------- .../node_modules/socks/typings/common/helpers.d.ts | 13 -- .../socks/typings/common/receivebuffer.d.ts | 12 -- .../node_modules/socks/typings/common/util.d.ts | 17 --- 4 files changed, 192 deletions(-) delete mode 100644 sandbox/testAppNevena/Front/node_modules/socks/typings/common/constants.d.ts delete mode 100644 sandbox/testAppNevena/Front/node_modules/socks/typings/common/helpers.d.ts delete mode 100644 sandbox/testAppNevena/Front/node_modules/socks/typings/common/receivebuffer.d.ts delete mode 100644 sandbox/testAppNevena/Front/node_modules/socks/typings/common/util.d.ts (limited to 'sandbox/testAppNevena/Front/node_modules/socks/typings/common') diff --git a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/constants.d.ts b/sandbox/testAppNevena/Front/node_modules/socks/typings/common/constants.d.ts deleted file mode 100644 index 664795cb..00000000 --- a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/constants.d.ts +++ /dev/null @@ -1,150 +0,0 @@ -/// -import { Duplex } from 'stream'; -import { Socket, SocketConnectOpts } from 'net'; -import { RequireOnlyOne } from './util'; -declare const DEFAULT_TIMEOUT = 30000; -declare type SocksProxyType = 4 | 5; -declare const ERRORS: { - InvalidSocksCommand: string; - InvalidSocksCommandForOperation: string; - InvalidSocksCommandChain: string; - InvalidSocksClientOptionsDestination: string; - InvalidSocksClientOptionsExistingSocket: string; - InvalidSocksClientOptionsProxy: string; - InvalidSocksClientOptionsTimeout: string; - InvalidSocksClientOptionsProxiesLength: string; - InvalidSocksClientOptionsCustomAuthRange: string; - InvalidSocksClientOptionsCustomAuthOptions: string; - NegotiationError: string; - SocketClosed: string; - ProxyConnectionTimedOut: string; - InternalError: string; - InvalidSocks4HandshakeResponse: string; - Socks4ProxyRejectedConnection: string; - InvalidSocks4IncomingConnectionResponse: string; - Socks4ProxyRejectedIncomingBoundConnection: string; - InvalidSocks5InitialHandshakeResponse: string; - InvalidSocks5IntiailHandshakeSocksVersion: string; - InvalidSocks5InitialHandshakeNoAcceptedAuthType: string; - InvalidSocks5InitialHandshakeUnknownAuthType: string; - Socks5AuthenticationFailed: string; - InvalidSocks5FinalHandshake: string; - InvalidSocks5FinalHandshakeRejected: string; - InvalidSocks5IncomingConnectionResponse: string; - Socks5ProxyRejectedIncomingBoundConnection: string; -}; -declare const SOCKS_INCOMING_PACKET_SIZES: { - Socks5InitialHandshakeResponse: number; - Socks5UserPassAuthenticationResponse: number; - Socks5ResponseHeader: number; - Socks5ResponseIPv4: number; - Socks5ResponseIPv6: number; - Socks5ResponseHostname: (hostNameLength: number) => number; - Socks4Response: number; -}; -declare type SocksCommandOption = 'connect' | 'bind' | 'associate'; -declare enum SocksCommand { - connect = 1, - bind = 2, - associate = 3 -} -declare enum Socks4Response { - Granted = 90, - Failed = 91, - Rejected = 92, - RejectedIdent = 93 -} -declare enum Socks5Auth { - NoAuth = 0, - GSSApi = 1, - UserPass = 2 -} -declare const SOCKS5_CUSTOM_AUTH_START = 128; -declare const SOCKS5_CUSTOM_AUTH_END = 254; -declare const SOCKS5_NO_ACCEPTABLE_AUTH = 255; -declare enum Socks5Response { - Granted = 0, - Failure = 1, - NotAllowed = 2, - NetworkUnreachable = 3, - HostUnreachable = 4, - ConnectionRefused = 5, - TTLExpired = 6, - CommandNotSupported = 7, - AddressNotSupported = 8 -} -declare enum Socks5HostType { - IPv4 = 1, - Hostname = 3, - IPv6 = 4 -} -declare enum SocksClientState { - Created = 0, - Connecting = 1, - Connected = 2, - SentInitialHandshake = 3, - ReceivedInitialHandshakeResponse = 4, - SentAuthentication = 5, - ReceivedAuthenticationResponse = 6, - SentFinalHandshake = 7, - ReceivedFinalResponse = 8, - BoundWaitingForConnection = 9, - Established = 10, - Disconnected = 11, - Error = 99 -} -/** - * Represents a SocksProxy - */ -declare type SocksProxy = RequireOnlyOne<{ - ipaddress?: string; - host?: string; - port: number; - type: SocksProxyType; - userId?: string; - password?: string; - custom_auth_method?: number; - custom_auth_request_handler?: () => Promise; - custom_auth_response_size?: number; - custom_auth_response_handler?: (data: Buffer) => Promise; -}, 'host' | 'ipaddress'>; -/** - * Represents a remote host - */ -interface SocksRemoteHost { - host: string; - port: number; -} -/** - * SocksClient connection options. - */ -interface SocksClientOptions { - command: SocksCommandOption; - destination: SocksRemoteHost; - proxy: SocksProxy; - timeout?: number; - existing_socket?: Duplex; - set_tcp_nodelay?: boolean; - socket_options?: SocketConnectOpts; -} -/** - * SocksClient chain connection options. - */ -interface SocksClientChainOptions { - command: 'connect'; - destination: SocksRemoteHost; - proxies: SocksProxy[]; - timeout?: number; - randomizeChain?: false; -} -interface SocksClientEstablishedEvent { - socket: Socket; - remoteHost?: SocksRemoteHost; -} -declare type SocksClientBoundEvent = SocksClientEstablishedEvent; -interface SocksUDPFrameDetails { - frameNumber?: number; - remoteHost: SocksRemoteHost; - data: Buffer; -} -export { DEFAULT_TIMEOUT, ERRORS, SocksProxyType, SocksCommand, Socks4Response, Socks5Auth, Socks5HostType, Socks5Response, SocksClientState, SocksProxy, SocksRemoteHost, SocksCommandOption, SocksClientOptions, SocksClientChainOptions, SocksClientEstablishedEvent, SocksClientBoundEvent, SocksUDPFrameDetails, SOCKS_INCOMING_PACKET_SIZES, SOCKS5_CUSTOM_AUTH_START, SOCKS5_CUSTOM_AUTH_END, SOCKS5_NO_ACCEPTABLE_AUTH, }; diff --git a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/helpers.d.ts b/sandbox/testAppNevena/Front/node_modules/socks/typings/common/helpers.d.ts deleted file mode 100644 index 8c3a1069..00000000 --- a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/helpers.d.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { SocksClientOptions, SocksClientChainOptions } from '../client/socksclient'; -/** - * Validates the provided SocksClientOptions - * @param options { SocksClientOptions } - * @param acceptedCommands { string[] } A list of accepted SocksProxy commands. - */ -declare function validateSocksClientOptions(options: SocksClientOptions, acceptedCommands?: string[]): void; -/** - * Validates the SocksClientChainOptions - * @param options { SocksClientChainOptions } - */ -declare function validateSocksClientChainOptions(options: SocksClientChainOptions): void; -export { validateSocksClientOptions, validateSocksClientChainOptions }; diff --git a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/receivebuffer.d.ts b/sandbox/testAppNevena/Front/node_modules/socks/typings/common/receivebuffer.d.ts deleted file mode 100644 index 756e98b5..00000000 --- a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/receivebuffer.d.ts +++ /dev/null @@ -1,12 +0,0 @@ -/// -declare class ReceiveBuffer { - private buffer; - private offset; - private originalSize; - constructor(size?: number); - get length(): number; - append(data: Buffer): number; - peek(length: number): Buffer; - get(length: number): Buffer; -} -export { ReceiveBuffer }; diff --git a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/util.d.ts b/sandbox/testAppNevena/Front/node_modules/socks/typings/common/util.d.ts deleted file mode 100644 index 29c539ad..00000000 --- a/sandbox/testAppNevena/Front/node_modules/socks/typings/common/util.d.ts +++ /dev/null @@ -1,17 +0,0 @@ -import { SocksClientOptions, SocksClientChainOptions } from './constants'; -/** - * Error wrapper for SocksClient - */ -declare class SocksClientError extends Error { - options: SocksClientOptions | SocksClientChainOptions; - constructor(message: string, options: SocksClientOptions | SocksClientChainOptions); -} -/** - * Shuffles a given array. - * @param array The array to shuffle. - */ -declare function shuffleArray(array: any[]): void; -declare type RequireOnlyOne = Pick> & { - [K in Keys]?: Required> & Partial, undefined>>; -}[Keys]; -export { RequireOnlyOne, SocksClientError, shuffleArray }; -- cgit v1.2.3