From 9bce51f651aad297ef9eb6df832bfdaf1de05d84 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期三, 22 四月 2026 14:27:54 +0800
Subject: [PATCH] 青岛推送
---
node_modules/@types/node/net.d.ts | 79 +++++++++++++++++++++++++++++----------
1 files changed, 58 insertions(+), 21 deletions(-)
diff --git a/node_modules/@types/node/net.d.ts b/node_modules/@types/node/net.d.ts
index e0cf837..bb6d3a3 100644
--- a/node_modules/@types/node/net.d.ts
+++ b/node_modules/@types/node/net.d.ts
@@ -1,17 +1,3 @@
-/**
- * > Stability: 2 - Stable
- *
- * The `node:net` module provides an asynchronous network API for creating stream-based
- * TCP or `IPC` servers ({@link createServer}) and clients
- * ({@link createConnection}).
- *
- * It can be accessed using:
- *
- * ```js
- * import net from 'node:net';
- * ```
- * @see [source](https://github.com/nodejs/node/blob/v25.x/lib/net.js)
- */
declare module "node:net" {
import { NonSharedBuffer } from "node:buffer";
import * as dns from "node:dns";
@@ -34,6 +20,11 @@
readable?: boolean | undefined;
writable?: boolean | undefined;
signal?: AbortSignal | undefined;
+ noDelay?: boolean | undefined;
+ keepAlive?: boolean | undefined;
+ keepAliveInitialDelay?: number | undefined;
+ blockList?: BlockList | undefined;
+ typeOfService?: number | undefined;
}
interface OnReadOpts {
buffer: Uint8Array | (() => Uint8Array);
@@ -52,9 +43,6 @@
hints?: number | undefined;
family?: number | undefined;
lookup?: LookupFunction | undefined;
- noDelay?: boolean | undefined;
- keepAlive?: boolean | undefined;
- keepAliveInitialDelay?: number | undefined;
/**
* @since v18.13.0
*/
@@ -63,7 +51,6 @@
* @since v18.13.0
*/
autoSelectFamilyAttemptTimeout?: number | undefined;
- blockList?: BlockList | undefined;
}
interface IpcSocketConnectOpts {
path: string;
@@ -116,9 +103,14 @@
* See `Writable` stream `write()` method for more
* information.
* @since v0.1.90
- * @param [encoding='utf8'] Only used when data is `string`.
*/
write(buffer: Uint8Array | string, cb?: (err?: Error | null) => void): boolean;
+ /**
+ * Sends data on the socket, with an explicit encoding for string data.
+ * @see {@link Socket.write} for full details.
+ * @since v0.1.90
+ * @param [encoding='utf8'] Only used when data is `string`.
+ */
write(str: Uint8Array | string, encoding?: BufferEncoding, cb?: (err?: Error | null) => void): boolean;
/**
* Initiate a connection on a given socket.
@@ -226,6 +218,37 @@
* @return The socket itself.
*/
setKeepAlive(enable?: boolean, initialDelay?: number): this;
+ /**
+ * Returns the current Type of Service (TOS) field for IPv4 packets or Traffic
+ * Class for IPv6 packets for this socket.
+ *
+ * `setTypeOfService()` may be called before the socket is connected; the value
+ * will be cached and applied when the socket establishes a connection.
+ * `getTypeOfService()` will return the currently set value even before connection.
+ *
+ * On some platforms (e.g., Linux), certain TOS/ECN bits may be masked or ignored,
+ * and behavior can differ between IPv4 and IPv6 or dual-stack sockets. Callers
+ * should verify platform-specific semantics.
+ * @since v25.6.0
+ * @returns The current TOS value.
+ */
+ getTypeOfService(): number;
+ /**
+ * Sets the Type of Service (TOS) field for IPv4 packets or Traffic Class for IPv6
+ * Packets sent from this socket. This can be used to prioritize network traffic.
+ *
+ * `setTypeOfService()` may be called before the socket is connected; the value
+ * will be cached and applied when the socket establishes a connection.
+ * `getTypeOfService()` will return the currently set value even before connection.
+ *
+ * On some platforms (e.g., Linux), certain TOS/ECN bits may be masked or ignored,
+ * and behavior can differ between IPv4 and IPv6 or dual-stack sockets. Callers
+ * should verify platform-specific semantics.
+ * @since v25.6.0
+ * @param tos The TOS value to set (0-255).
+ * @returns The socket itself.
+ */
+ setTypeOfService(tos: number): this;
/**
* Returns the bound `address`, the address `family` name and `port` of the
* socket as reported by the operating system:`{ port: 12346, family: 'IPv4', address: '127.0.0.1' }`
@@ -358,12 +381,26 @@
*
* See `writable.end()` for further details.
* @since v0.1.90
- * @param [encoding='utf8'] Only used when data is `string`.
* @param callback Optional callback for when the socket is finished.
* @return The socket itself.
*/
end(callback?: () => void): this;
+ /**
+ * Half-closes the socket, with one final chunk of data.
+ * @see {@link Socket.end} for full details.
+ * @since v0.1.90
+ * @param callback Optional callback for when the socket is finished.
+ * @return The socket itself.
+ */
end(buffer: Uint8Array | string, callback?: () => void): this;
+ /**
+ * Half-closes the socket, with one final chunk of data.
+ * @see {@link Socket.end} for full details.
+ * @since v0.1.90
+ * @param [encoding='utf8'] Only used when data is `string`.
+ * @param callback Optional callback for when the socket is finished.
+ * @return The socket itself.
+ */
end(str: Uint8Array | string, encoding?: BufferEncoding, callback?: () => void): this;
// #region InternalEventEmitter
addListener<E extends keyof SocketEventMap>(eventName: E, listener: (...args: SocketEventMap[E]) => void): this;
@@ -825,7 +862,7 @@
function setDefaultAutoSelectFamily(value: boolean): void;
/**
* Gets the current default value of the `autoSelectFamilyAttemptTimeout` option of `socket.connect(options)`.
- * The initial default value is `250` or the value specified via the command line option `--network-family-autoselection-attempt-timeout`.
+ * The initial default value is `500` or the value specified via the command line option `--network-family-autoselection-attempt-timeout`.
* @returns The current default value of the `autoSelectFamilyAttemptTimeout` option.
* @since v19.8.0, v18.8.0
*/
--
Gitblit v1.9.3