pi-cursor-sdk 0.1.47 → 0.1.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (291) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/README.md +2 -2
  3. package/node_modules/@connectrpc/connect-node/README.md +141 -0
  4. package/node_modules/@connectrpc/connect-node/dist/cjs/compression.d.ts +15 -0
  5. package/node_modules/@connectrpc/connect-node/dist/cjs/compression.js +89 -0
  6. package/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.d.ts +42 -0
  7. package/node_modules/@connectrpc/connect-node/dist/cjs/connect-node-adapter.js +61 -0
  8. package/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.d.ts +100 -0
  9. package/node_modules/@connectrpc/connect-node/dist/cjs/connect-transport.js +25 -0
  10. package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.d.ts +96 -0
  11. package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-transport.js +25 -0
  12. package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.d.ts +96 -0
  13. package/node_modules/@connectrpc/connect-node/dist/cjs/grpc-web-transport.js +25 -0
  14. package/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.d.ts +146 -0
  15. package/node_modules/@connectrpc/connect-node/dist/cjs/http2-session-manager.js +536 -0
  16. package/node_modules/@connectrpc/connect-node/dist/cjs/index.d.ts +15 -0
  17. package/node_modules/@connectrpc/connect-node/dist/cjs/index.js +36 -0
  18. package/node_modules/@connectrpc/connect-node/dist/cjs/node-error.d.ts +45 -0
  19. package/node_modules/@connectrpc/connect-node/dist/cjs/node-error.js +154 -0
  20. package/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.d.ts +1 -0
  21. package/node_modules/@connectrpc/connect-node/dist/cjs/node-headers-polyfill.js +29 -0
  22. package/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.d.ts +89 -0
  23. package/node_modules/@connectrpc/connect-node/dist/cjs/node-transport-options.js +58 -0
  24. package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.d.ts +54 -0
  25. package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-client.js +326 -0
  26. package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.d.ts +41 -0
  27. package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-handler.js +234 -0
  28. package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.d.ts +19 -0
  29. package/node_modules/@connectrpc/connect-node/dist/cjs/node-universal-header.js +97 -0
  30. package/node_modules/@connectrpc/connect-node/dist/cjs/package.json +1 -0
  31. package/node_modules/@connectrpc/connect-node/dist/esm/compression.d.ts +15 -0
  32. package/node_modules/@connectrpc/connect-node/dist/esm/compression.js +86 -0
  33. package/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.d.ts +42 -0
  34. package/node_modules/@connectrpc/connect-node/dist/esm/connect-node-adapter.js +58 -0
  35. package/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.d.ts +100 -0
  36. package/node_modules/@connectrpc/connect-node/dist/esm/connect-transport.js +22 -0
  37. package/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.d.ts +96 -0
  38. package/node_modules/@connectrpc/connect-node/dist/esm/grpc-transport.js +22 -0
  39. package/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.d.ts +96 -0
  40. package/node_modules/@connectrpc/connect-node/dist/esm/grpc-web-transport.js +22 -0
  41. package/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.d.ts +146 -0
  42. package/node_modules/@connectrpc/connect-node/dist/esm/http2-session-manager.js +532 -0
  43. package/node_modules/@connectrpc/connect-node/dist/esm/index.d.ts +15 -0
  44. package/node_modules/@connectrpc/connect-node/dist/esm/index.js +23 -0
  45. package/node_modules/@connectrpc/connect-node/dist/esm/node-error.d.ts +45 -0
  46. package/node_modules/@connectrpc/connect-node/dist/esm/node-error.js +147 -0
  47. package/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.d.ts +1 -0
  48. package/node_modules/@connectrpc/connect-node/dist/esm/node-headers-polyfill.js +27 -0
  49. package/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.d.ts +89 -0
  50. package/node_modules/@connectrpc/connect-node/dist/esm/node-transport-options.js +58 -0
  51. package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.d.ts +54 -0
  52. package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-client.js +324 -0
  53. package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.d.ts +41 -0
  54. package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-handler.js +230 -0
  55. package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.d.ts +19 -0
  56. package/node_modules/@connectrpc/connect-node/dist/esm/node-universal-header.js +93 -0
  57. package/node_modules/@connectrpc/connect-node/package.json +46 -0
  58. package/node_modules/undici/LICENSE +21 -0
  59. package/node_modules/undici/README.md +741 -0
  60. package/node_modules/undici/docs/docs/api/Agent.md +84 -0
  61. package/node_modules/undici/docs/docs/api/BalancedPool.md +99 -0
  62. package/node_modules/undici/docs/docs/api/CacheStorage.md +30 -0
  63. package/node_modules/undici/docs/docs/api/CacheStore.md +164 -0
  64. package/node_modules/undici/docs/docs/api/Client.md +288 -0
  65. package/node_modules/undici/docs/docs/api/ClientStats.md +27 -0
  66. package/node_modules/undici/docs/docs/api/Connector.md +115 -0
  67. package/node_modules/undici/docs/docs/api/ContentType.md +57 -0
  68. package/node_modules/undici/docs/docs/api/Cookies.md +128 -0
  69. package/node_modules/undici/docs/docs/api/Debug.md +62 -0
  70. package/node_modules/undici/docs/docs/api/DiagnosticsChannel.md +315 -0
  71. package/node_modules/undici/docs/docs/api/Dispatcher.md +1392 -0
  72. package/node_modules/undici/docs/docs/api/EnvHttpProxyAgent.md +159 -0
  73. package/node_modules/undici/docs/docs/api/Errors.md +49 -0
  74. package/node_modules/undici/docs/docs/api/EventSource.md +45 -0
  75. package/node_modules/undici/docs/docs/api/Fetch.md +60 -0
  76. package/node_modules/undici/docs/docs/api/GlobalInstallation.md +139 -0
  77. package/node_modules/undici/docs/docs/api/H2CClient.md +263 -0
  78. package/node_modules/undici/docs/docs/api/MockAgent.md +603 -0
  79. package/node_modules/undici/docs/docs/api/MockCallHistory.md +197 -0
  80. package/node_modules/undici/docs/docs/api/MockCallHistoryLog.md +43 -0
  81. package/node_modules/undici/docs/docs/api/MockClient.md +81 -0
  82. package/node_modules/undici/docs/docs/api/MockErrors.md +12 -0
  83. package/node_modules/undici/docs/docs/api/MockPool.md +555 -0
  84. package/node_modules/undici/docs/docs/api/Pool.md +84 -0
  85. package/node_modules/undici/docs/docs/api/PoolStats.md +35 -0
  86. package/node_modules/undici/docs/docs/api/ProxyAgent.md +229 -0
  87. package/node_modules/undici/docs/docs/api/RedirectHandler.md +93 -0
  88. package/node_modules/undici/docs/docs/api/RetryAgent.md +50 -0
  89. package/node_modules/undici/docs/docs/api/RetryHandler.md +118 -0
  90. package/node_modules/undici/docs/docs/api/RoundRobinPool.md +145 -0
  91. package/node_modules/undici/docs/docs/api/SnapshotAgent.md +616 -0
  92. package/node_modules/undici/docs/docs/api/Socks5ProxyAgent.md +275 -0
  93. package/node_modules/undici/docs/docs/api/Util.md +25 -0
  94. package/node_modules/undici/docs/docs/api/WebSocket.md +141 -0
  95. package/node_modules/undici/docs/docs/api/api-lifecycle.md +91 -0
  96. package/node_modules/undici/docs/docs/best-practices/client-certificate.md +64 -0
  97. package/node_modules/undici/docs/docs/best-practices/crawling.md +58 -0
  98. package/node_modules/undici/docs/docs/best-practices/mocking-request.md +190 -0
  99. package/node_modules/undici/docs/docs/best-practices/proxy.md +127 -0
  100. package/node_modules/undici/docs/docs/best-practices/undici-vs-builtin-fetch.md +224 -0
  101. package/node_modules/undici/docs/docs/best-practices/writing-tests.md +63 -0
  102. package/node_modules/undici/index-fetch.js +65 -0
  103. package/node_modules/undici/index.d.ts +3 -0
  104. package/node_modules/undici/index.js +234 -0
  105. package/node_modules/undici/lib/api/abort-signal.js +59 -0
  106. package/node_modules/undici/lib/api/api-connect.js +110 -0
  107. package/node_modules/undici/lib/api/api-pipeline.js +252 -0
  108. package/node_modules/undici/lib/api/api-request.js +214 -0
  109. package/node_modules/undici/lib/api/api-stream.js +209 -0
  110. package/node_modules/undici/lib/api/api-upgrade.js +111 -0
  111. package/node_modules/undici/lib/api/index.js +7 -0
  112. package/node_modules/undici/lib/api/readable.js +580 -0
  113. package/node_modules/undici/lib/cache/memory-cache-store.js +234 -0
  114. package/node_modules/undici/lib/cache/sqlite-cache-store.js +461 -0
  115. package/node_modules/undici/lib/core/connect.js +153 -0
  116. package/node_modules/undici/lib/core/constants.js +143 -0
  117. package/node_modules/undici/lib/core/diagnostics.js +227 -0
  118. package/node_modules/undici/lib/core/errors.js +477 -0
  119. package/node_modules/undici/lib/core/request.js +453 -0
  120. package/node_modules/undici/lib/core/socks5-client.js +422 -0
  121. package/node_modules/undici/lib/core/socks5-utils.js +212 -0
  122. package/node_modules/undici/lib/core/symbols.js +75 -0
  123. package/node_modules/undici/lib/core/tree.js +160 -0
  124. package/node_modules/undici/lib/core/util.js +992 -0
  125. package/node_modules/undici/lib/dispatcher/agent.js +158 -0
  126. package/node_modules/undici/lib/dispatcher/balanced-pool.js +219 -0
  127. package/node_modules/undici/lib/dispatcher/client-h1.js +1722 -0
  128. package/node_modules/undici/lib/dispatcher/client-h2.js +995 -0
  129. package/node_modules/undici/lib/dispatcher/client.js +664 -0
  130. package/node_modules/undici/lib/dispatcher/dispatcher-base.js +184 -0
  131. package/node_modules/undici/lib/dispatcher/dispatcher.js +48 -0
  132. package/node_modules/undici/lib/dispatcher/env-http-proxy-agent.js +146 -0
  133. package/node_modules/undici/lib/dispatcher/fixed-queue.js +135 -0
  134. package/node_modules/undici/lib/dispatcher/h2c-client.js +51 -0
  135. package/node_modules/undici/lib/dispatcher/pool-base.js +214 -0
  136. package/node_modules/undici/lib/dispatcher/pool.js +118 -0
  137. package/node_modules/undici/lib/dispatcher/proxy-agent.js +319 -0
  138. package/node_modules/undici/lib/dispatcher/retry-agent.js +35 -0
  139. package/node_modules/undici/lib/dispatcher/round-robin-pool.js +137 -0
  140. package/node_modules/undici/lib/dispatcher/socks5-proxy-agent.js +260 -0
  141. package/node_modules/undici/lib/encoding/index.js +33 -0
  142. package/node_modules/undici/lib/global.js +59 -0
  143. package/node_modules/undici/lib/handler/cache-handler.js +578 -0
  144. package/node_modules/undici/lib/handler/cache-revalidation-handler.js +124 -0
  145. package/node_modules/undici/lib/handler/decorator-handler.js +67 -0
  146. package/node_modules/undici/lib/handler/deduplication-handler.js +460 -0
  147. package/node_modules/undici/lib/handler/redirect-handler.js +238 -0
  148. package/node_modules/undici/lib/handler/retry-handler.js +394 -0
  149. package/node_modules/undici/lib/handler/unwrap-handler.js +106 -0
  150. package/node_modules/undici/lib/handler/wrap-handler.js +105 -0
  151. package/node_modules/undici/lib/interceptor/cache.js +495 -0
  152. package/node_modules/undici/lib/interceptor/decompress.js +259 -0
  153. package/node_modules/undici/lib/interceptor/deduplicate.js +117 -0
  154. package/node_modules/undici/lib/interceptor/dns.js +571 -0
  155. package/node_modules/undici/lib/interceptor/dump.js +112 -0
  156. package/node_modules/undici/lib/interceptor/redirect.js +21 -0
  157. package/node_modules/undici/lib/interceptor/response-error.js +95 -0
  158. package/node_modules/undici/lib/interceptor/retry.js +19 -0
  159. package/node_modules/undici/lib/llhttp/.gitkeep +0 -0
  160. package/node_modules/undici/lib/llhttp/constants.d.ts +195 -0
  161. package/node_modules/undici/lib/llhttp/constants.js +531 -0
  162. package/node_modules/undici/lib/llhttp/llhttp-wasm.js +15 -0
  163. package/node_modules/undici/lib/llhttp/llhttp_simd-wasm.js +15 -0
  164. package/node_modules/undici/lib/llhttp/utils.d.ts +2 -0
  165. package/node_modules/undici/lib/llhttp/utils.js +12 -0
  166. package/node_modules/undici/lib/mock/mock-agent.js +232 -0
  167. package/node_modules/undici/lib/mock/mock-call-history.js +248 -0
  168. package/node_modules/undici/lib/mock/mock-client.js +68 -0
  169. package/node_modules/undici/lib/mock/mock-errors.js +29 -0
  170. package/node_modules/undici/lib/mock/mock-interceptor.js +209 -0
  171. package/node_modules/undici/lib/mock/mock-pool.js +68 -0
  172. package/node_modules/undici/lib/mock/mock-symbols.js +32 -0
  173. package/node_modules/undici/lib/mock/mock-utils.js +486 -0
  174. package/node_modules/undici/lib/mock/pending-interceptors-formatter.js +43 -0
  175. package/node_modules/undici/lib/mock/snapshot-agent.js +353 -0
  176. package/node_modules/undici/lib/mock/snapshot-recorder.js +588 -0
  177. package/node_modules/undici/lib/mock/snapshot-utils.js +158 -0
  178. package/node_modules/undici/lib/util/cache.js +414 -0
  179. package/node_modules/undici/lib/util/date.js +653 -0
  180. package/node_modules/undici/lib/util/promise.js +28 -0
  181. package/node_modules/undici/lib/util/runtime-features.js +124 -0
  182. package/node_modules/undici/lib/util/stats.js +32 -0
  183. package/node_modules/undici/lib/util/timers.js +425 -0
  184. package/node_modules/undici/lib/web/cache/cache.js +864 -0
  185. package/node_modules/undici/lib/web/cache/cachestorage.js +152 -0
  186. package/node_modules/undici/lib/web/cache/util.js +45 -0
  187. package/node_modules/undici/lib/web/cookies/constants.js +12 -0
  188. package/node_modules/undici/lib/web/cookies/index.js +199 -0
  189. package/node_modules/undici/lib/web/cookies/parse.js +314 -0
  190. package/node_modules/undici/lib/web/cookies/util.js +282 -0
  191. package/node_modules/undici/lib/web/eventsource/eventsource-stream.js +399 -0
  192. package/node_modules/undici/lib/web/eventsource/eventsource.js +501 -0
  193. package/node_modules/undici/lib/web/eventsource/util.js +29 -0
  194. package/node_modules/undici/lib/web/fetch/LICENSE +21 -0
  195. package/node_modules/undici/lib/web/fetch/body.js +509 -0
  196. package/node_modules/undici/lib/web/fetch/constants.js +131 -0
  197. package/node_modules/undici/lib/web/fetch/data-url.js +596 -0
  198. package/node_modules/undici/lib/web/fetch/formdata-parser.js +586 -0
  199. package/node_modules/undici/lib/web/fetch/formdata.js +259 -0
  200. package/node_modules/undici/lib/web/fetch/global.js +40 -0
  201. package/node_modules/undici/lib/web/fetch/headers.js +719 -0
  202. package/node_modules/undici/lib/web/fetch/index.js +2413 -0
  203. package/node_modules/undici/lib/web/fetch/request.js +1115 -0
  204. package/node_modules/undici/lib/web/fetch/response.js +641 -0
  205. package/node_modules/undici/lib/web/fetch/util.js +1522 -0
  206. package/node_modules/undici/lib/web/infra/index.js +229 -0
  207. package/node_modules/undici/lib/web/subresource-integrity/Readme.md +9 -0
  208. package/node_modules/undici/lib/web/subresource-integrity/subresource-integrity.js +307 -0
  209. package/node_modules/undici/lib/web/webidl/index.js +1006 -0
  210. package/node_modules/undici/lib/web/websocket/connection.js +329 -0
  211. package/node_modules/undici/lib/web/websocket/constants.js +126 -0
  212. package/node_modules/undici/lib/web/websocket/events.js +331 -0
  213. package/node_modules/undici/lib/web/websocket/frame.js +133 -0
  214. package/node_modules/undici/lib/web/websocket/permessage-deflate.js +100 -0
  215. package/node_modules/undici/lib/web/websocket/receiver.js +507 -0
  216. package/node_modules/undici/lib/web/websocket/sender.js +109 -0
  217. package/node_modules/undici/lib/web/websocket/stream/websocketerror.js +104 -0
  218. package/node_modules/undici/lib/web/websocket/stream/websocketstream.js +498 -0
  219. package/node_modules/undici/lib/web/websocket/util.js +347 -0
  220. package/node_modules/undici/lib/web/websocket/websocket.js +758 -0
  221. package/node_modules/undici/package.json +152 -0
  222. package/node_modules/undici/scripts/strip-comments.js +10 -0
  223. package/node_modules/undici/types/README.md +6 -0
  224. package/node_modules/undici/types/agent.d.ts +32 -0
  225. package/node_modules/undici/types/api.d.ts +43 -0
  226. package/node_modules/undici/types/balanced-pool.d.ts +30 -0
  227. package/node_modules/undici/types/cache-interceptor.d.ts +179 -0
  228. package/node_modules/undici/types/cache.d.ts +36 -0
  229. package/node_modules/undici/types/client-stats.d.ts +15 -0
  230. package/node_modules/undici/types/client.d.ts +139 -0
  231. package/node_modules/undici/types/connector.d.ts +36 -0
  232. package/node_modules/undici/types/content-type.d.ts +21 -0
  233. package/node_modules/undici/types/cookies.d.ts +30 -0
  234. package/node_modules/undici/types/diagnostics-channel.d.ts +74 -0
  235. package/node_modules/undici/types/dispatcher.d.ts +275 -0
  236. package/node_modules/undici/types/env-http-proxy-agent.d.ts +22 -0
  237. package/node_modules/undici/types/errors.d.ts +177 -0
  238. package/node_modules/undici/types/eventsource.d.ts +66 -0
  239. package/node_modules/undici/types/fetch.d.ts +231 -0
  240. package/node_modules/undici/types/formdata.d.ts +114 -0
  241. package/node_modules/undici/types/global-dispatcher.d.ts +9 -0
  242. package/node_modules/undici/types/global-origin.d.ts +7 -0
  243. package/node_modules/undici/types/h2c-client.d.ts +73 -0
  244. package/node_modules/undici/types/handlers.d.ts +14 -0
  245. package/node_modules/undici/types/header.d.ts +160 -0
  246. package/node_modules/undici/types/index.d.ts +91 -0
  247. package/node_modules/undici/types/interceptors.d.ts +80 -0
  248. package/node_modules/undici/types/mock-agent.d.ts +68 -0
  249. package/node_modules/undici/types/mock-call-history.d.ts +111 -0
  250. package/node_modules/undici/types/mock-client.d.ts +27 -0
  251. package/node_modules/undici/types/mock-errors.d.ts +12 -0
  252. package/node_modules/undici/types/mock-interceptor.d.ts +94 -0
  253. package/node_modules/undici/types/mock-pool.d.ts +27 -0
  254. package/node_modules/undici/types/patch.d.ts +29 -0
  255. package/node_modules/undici/types/pool-stats.d.ts +19 -0
  256. package/node_modules/undici/types/pool.d.ts +41 -0
  257. package/node_modules/undici/types/proxy-agent.d.ts +29 -0
  258. package/node_modules/undici/types/readable.d.ts +68 -0
  259. package/node_modules/undici/types/retry-agent.d.ts +8 -0
  260. package/node_modules/undici/types/retry-handler.d.ts +125 -0
  261. package/node_modules/undici/types/round-robin-pool.d.ts +41 -0
  262. package/node_modules/undici/types/snapshot-agent.d.ts +109 -0
  263. package/node_modules/undici/types/socks5-proxy-agent.d.ts +25 -0
  264. package/node_modules/undici/types/util.d.ts +18 -0
  265. package/node_modules/undici/types/utility.d.ts +7 -0
  266. package/node_modules/undici/types/webidl.d.ts +347 -0
  267. package/node_modules/undici/types/websocket.d.ts +188 -0
  268. package/package.json +161 -156
  269. package/src/context.ts +1 -1
  270. package/src/cursor-context-tools.ts +1 -1
  271. package/src/cursor-live-run-accounting.ts +1 -1
  272. package/src/cursor-live-run-coordinator.ts +1 -1
  273. package/src/cursor-native-replay-routing.ts +1 -1
  274. package/src/cursor-partial-content-emitter.ts +1 -1
  275. package/src/cursor-pi-tool-bridge-mcp.ts +1 -1
  276. package/src/cursor-pi-tool-bridge-run.ts +1 -1
  277. package/src/cursor-pi-tool-bridge-types.ts +1 -1
  278. package/src/cursor-provider-lazy.ts +1 -1
  279. package/src/cursor-provider-live-run-drain.ts +1 -1
  280. package/src/cursor-provider-run-finalizer.ts +1 -1
  281. package/src/cursor-provider-turn-coordinator.ts +1 -1
  282. package/src/cursor-provider-turn-lifecycle-emitter.ts +1 -1
  283. package/src/cursor-provider-turn-prepare.ts +1 -1
  284. package/src/cursor-provider-turn-types.ts +1 -1
  285. package/src/cursor-provider.ts +1 -1
  286. package/src/cursor-run-final-text.ts +1 -1
  287. package/src/cursor-sdk-event-debug.ts +1 -1
  288. package/src/cursor-session-agent.ts +1 -1
  289. package/src/cursor-session-send-policy.ts +1 -1
  290. package/src/cursor-usage-accounting.ts +1 -1
  291. package/src/model-discovery.ts +1 -1
@@ -0,0 +1,422 @@
1
+ 'use strict'
2
+
3
+ const { EventEmitter } = require('node:events')
4
+ const { Buffer } = require('node:buffer')
5
+ const { InvalidArgumentError, Socks5ProxyError } = require('./errors')
6
+ const { debuglog } = require('node:util')
7
+ const { parseAddress } = require('./socks5-utils')
8
+
9
+ const debug = debuglog('undici:socks5')
10
+ const EMPTY_BUFFER = Buffer.alloc(0)
11
+
12
+ // SOCKS5 constants
13
+ const SOCKS_VERSION = 0x05
14
+
15
+ // Authentication methods
16
+ const AUTH_METHODS = {
17
+ NO_AUTH: 0x00,
18
+ GSSAPI: 0x01,
19
+ USERNAME_PASSWORD: 0x02,
20
+ NO_ACCEPTABLE: 0xFF
21
+ }
22
+
23
+ // SOCKS5 commands
24
+ const COMMANDS = {
25
+ CONNECT: 0x01,
26
+ BIND: 0x02,
27
+ UDP_ASSOCIATE: 0x03
28
+ }
29
+
30
+ // Address types
31
+ const ADDRESS_TYPES = {
32
+ IPV4: 0x01,
33
+ DOMAIN: 0x03,
34
+ IPV6: 0x04
35
+ }
36
+
37
+ // Reply codes
38
+ const REPLY_CODES = {
39
+ SUCCEEDED: 0x00,
40
+ GENERAL_FAILURE: 0x01,
41
+ CONNECTION_NOT_ALLOWED: 0x02,
42
+ NETWORK_UNREACHABLE: 0x03,
43
+ HOST_UNREACHABLE: 0x04,
44
+ CONNECTION_REFUSED: 0x05,
45
+ TTL_EXPIRED: 0x06,
46
+ COMMAND_NOT_SUPPORTED: 0x07,
47
+ ADDRESS_TYPE_NOT_SUPPORTED: 0x08
48
+ }
49
+
50
+ // State machine states
51
+ const STATES = {
52
+ INITIAL: 'initial',
53
+ HANDSHAKING: 'handshaking',
54
+ AUTHENTICATING: 'authenticating',
55
+ AUTHENTICATED: 'authenticated',
56
+ CONNECTING: 'connecting',
57
+ CONNECTED: 'connected',
58
+ ERROR: 'error',
59
+ CLOSED: 'closed'
60
+ }
61
+
62
+ /**
63
+ * SOCKS5 client implementation
64
+ * Handles SOCKS5 protocol negotiation and connection establishment
65
+ */
66
+ class Socks5Client extends EventEmitter {
67
+ constructor (socket, options = {}) {
68
+ super()
69
+
70
+ if (!socket) {
71
+ throw new InvalidArgumentError('socket is required')
72
+ }
73
+
74
+ this.socket = socket
75
+ this.options = options
76
+ this.state = STATES.INITIAL
77
+ this.buffer = EMPTY_BUFFER
78
+ this.onSocketData = this.onData.bind(this)
79
+ this.onSocketError = this.onError.bind(this)
80
+ this.onSocketClose = this.onClose.bind(this)
81
+
82
+ // Authentication settings
83
+ this.authMethods = []
84
+ if (options.username && options.password) {
85
+ this.authMethods.push(AUTH_METHODS.USERNAME_PASSWORD)
86
+ }
87
+ this.authMethods.push(AUTH_METHODS.NO_AUTH)
88
+
89
+ // Socket event handlers
90
+ this.socket.on('data', this.onSocketData)
91
+ this.socket.on('error', this.onSocketError)
92
+ this.socket.on('close', this.onSocketClose)
93
+ }
94
+
95
+ /**
96
+ * Handle incoming data from the socket
97
+ */
98
+ onData (data) {
99
+ debug('received data', data.length, 'bytes in state', this.state)
100
+ this.buffer = Buffer.concat([this.buffer, data])
101
+
102
+ try {
103
+ switch (this.state) {
104
+ case STATES.HANDSHAKING:
105
+ this.handleHandshakeResponse()
106
+ break
107
+ case STATES.AUTHENTICATING:
108
+ this.handleAuthResponse()
109
+ break
110
+ case STATES.CONNECTING:
111
+ this.handleConnectResponse()
112
+ break
113
+ }
114
+ } catch (err) {
115
+ this.onError(err)
116
+ }
117
+ }
118
+
119
+ /**
120
+ * Handle socket errors
121
+ */
122
+ onError (err) {
123
+ debug('socket error', err)
124
+ this.state = STATES.ERROR
125
+ this.emit('error', err)
126
+ this.destroy()
127
+ }
128
+
129
+ /**
130
+ * Handle socket close
131
+ */
132
+ onClose () {
133
+ debug('socket closed')
134
+ this.state = STATES.CLOSED
135
+ this.emit('close')
136
+ }
137
+
138
+ /**
139
+ * Destroy the client and underlying socket
140
+ */
141
+ destroy () {
142
+ if (this.socket && !this.socket.destroyed) {
143
+ this.socket.destroy()
144
+ }
145
+ }
146
+
147
+ markAuthenticated () {
148
+ this.state = STATES.AUTHENTICATED
149
+ this.emit('authenticated')
150
+ }
151
+
152
+ /**
153
+ * Start the SOCKS5 handshake
154
+ */
155
+ handshake () {
156
+ if (this.state !== STATES.INITIAL) {
157
+ throw new InvalidArgumentError('Handshake already started')
158
+ }
159
+
160
+ debug('starting handshake with', this.authMethods.length, 'auth methods')
161
+ this.state = STATES.HANDSHAKING
162
+
163
+ // Build handshake request
164
+ // +----+----------+----------+
165
+ // |VER | NMETHODS | METHODS |
166
+ // +----+----------+----------+
167
+ // | 1 | 1 | 1 to 255 |
168
+ // +----+----------+----------+
169
+ const request = Buffer.alloc(2 + this.authMethods.length)
170
+ request[0] = SOCKS_VERSION
171
+ request[1] = this.authMethods.length
172
+ this.authMethods.forEach((method, i) => {
173
+ request[2 + i] = method
174
+ })
175
+
176
+ this.socket.write(request)
177
+ }
178
+
179
+ /**
180
+ * Handle handshake response from server
181
+ */
182
+ handleHandshakeResponse () {
183
+ if (this.buffer.length < 2) {
184
+ return // Not enough data yet
185
+ }
186
+
187
+ const version = this.buffer[0]
188
+ const method = this.buffer[1]
189
+
190
+ if (version !== SOCKS_VERSION) {
191
+ throw new Socks5ProxyError(`Invalid SOCKS version: ${version}`, 'UND_ERR_SOCKS5_VERSION')
192
+ }
193
+
194
+ if (method === AUTH_METHODS.NO_ACCEPTABLE) {
195
+ throw new Socks5ProxyError('No acceptable authentication method', 'UND_ERR_SOCKS5_AUTH_REJECTED')
196
+ }
197
+
198
+ this.buffer = this.buffer.subarray(2)
199
+ debug('server selected auth method', method)
200
+
201
+ if (method === AUTH_METHODS.NO_AUTH) {
202
+ this.markAuthenticated()
203
+ } else if (method === AUTH_METHODS.USERNAME_PASSWORD) {
204
+ this.state = STATES.AUTHENTICATING
205
+ this.sendAuthRequest()
206
+ } else {
207
+ throw new Socks5ProxyError(`Unsupported authentication method: ${method}`, 'UND_ERR_SOCKS5_AUTH_METHOD')
208
+ }
209
+ }
210
+
211
+ /**
212
+ * Send username/password authentication request
213
+ */
214
+ sendAuthRequest () {
215
+ const { username, password } = this.options
216
+
217
+ if (!username || !password) {
218
+ throw new InvalidArgumentError('Username and password required for authentication')
219
+ }
220
+
221
+ debug('sending username/password auth')
222
+
223
+ // Username/Password authentication request (RFC 1929)
224
+ // +----+------+----------+------+----------+
225
+ // |VER | ULEN | UNAME | PLEN | PASSWD |
226
+ // +----+------+----------+------+----------+
227
+ // | 1 | 1 | 1 to 255 | 1 | 1 to 255 |
228
+ // +----+------+----------+------+----------+
229
+ const usernameBuffer = Buffer.from(username)
230
+ const passwordBuffer = Buffer.from(password)
231
+
232
+ if (usernameBuffer.length > 255 || passwordBuffer.length > 255) {
233
+ throw new InvalidArgumentError('Username or password too long')
234
+ }
235
+
236
+ const request = Buffer.alloc(3 + usernameBuffer.length + passwordBuffer.length)
237
+ request[0] = 0x01 // Sub-negotiation version
238
+ request[1] = usernameBuffer.length
239
+ usernameBuffer.copy(request, 2)
240
+ request[2 + usernameBuffer.length] = passwordBuffer.length
241
+ passwordBuffer.copy(request, 3 + usernameBuffer.length)
242
+
243
+ this.socket.write(request)
244
+ }
245
+
246
+ /**
247
+ * Handle authentication response
248
+ */
249
+ handleAuthResponse () {
250
+ if (this.buffer.length < 2) {
251
+ return // Not enough data yet
252
+ }
253
+
254
+ const version = this.buffer[0]
255
+ const status = this.buffer[1]
256
+
257
+ if (version !== 0x01) {
258
+ throw new Socks5ProxyError(`Invalid auth sub-negotiation version: ${version}`, 'UND_ERR_SOCKS5_AUTH_VERSION')
259
+ }
260
+
261
+ if (status !== 0x00) {
262
+ throw new Socks5ProxyError('Authentication failed', 'UND_ERR_SOCKS5_AUTH_FAILED')
263
+ }
264
+
265
+ this.buffer = this.buffer.subarray(2)
266
+ debug('authentication successful')
267
+ this.markAuthenticated()
268
+ }
269
+
270
+ /**
271
+ * Send CONNECT command
272
+ * @param {string} address - Target address (IP or domain)
273
+ * @param {number} port - Target port
274
+ */
275
+ connect (address, port) {
276
+ if (this.state === STATES.CONNECTING || this.state === STATES.CONNECTED) {
277
+ throw new InvalidArgumentError('Connection already in progress')
278
+ }
279
+
280
+ if (this.state !== STATES.AUTHENTICATED) {
281
+ throw new InvalidArgumentError('Client must be authenticated before CONNECT')
282
+ }
283
+
284
+ debug('connecting to', address, port)
285
+ this.state = STATES.CONNECTING
286
+
287
+ const request = this.buildConnectRequest(COMMANDS.CONNECT, address, port)
288
+ this.socket.write(request)
289
+ }
290
+
291
+ /**
292
+ * Build a SOCKS5 request
293
+ */
294
+ buildConnectRequest (command, address, port) {
295
+ // Parse address to determine type and buffer
296
+ const { type: addressType, buffer: addressBuffer } = parseAddress(address)
297
+
298
+ // Build request
299
+ // +----+-----+-------+------+----------+----------+
300
+ // |VER | CMD | RSV | ATYP | DST.ADDR | DST.PORT |
301
+ // +----+-----+-------+------+----------+----------+
302
+ // | 1 | 1 | X'00' | 1 | Variable | 2 |
303
+ // +----+-----+-------+------+----------+----------+
304
+ const request = Buffer.alloc(4 + addressBuffer.length + 2)
305
+ request[0] = SOCKS_VERSION
306
+ request[1] = command
307
+ request[2] = 0x00 // Reserved
308
+ request[3] = addressType
309
+ addressBuffer.copy(request, 4)
310
+ request.writeUInt16BE(port, 4 + addressBuffer.length)
311
+
312
+ return request
313
+ }
314
+
315
+ /**
316
+ * Handle CONNECT response
317
+ */
318
+ handleConnectResponse () {
319
+ if (this.buffer.length < 4) {
320
+ return // Not enough data for header
321
+ }
322
+
323
+ const version = this.buffer[0]
324
+ const reply = this.buffer[1]
325
+ const addressType = this.buffer[3]
326
+
327
+ if (version !== SOCKS_VERSION) {
328
+ throw new Socks5ProxyError(`Invalid SOCKS version in reply: ${version}`, 'UND_ERR_SOCKS5_REPLY_VERSION')
329
+ }
330
+
331
+ // Calculate the expected response length
332
+ let responseLength = 4 // VER + REP + RSV + ATYP
333
+ if (addressType === ADDRESS_TYPES.IPV4) {
334
+ responseLength += 4 + 2 // IPv4 + port
335
+ } else if (addressType === ADDRESS_TYPES.DOMAIN) {
336
+ if (this.buffer.length < 5) {
337
+ return // Need domain length byte
338
+ }
339
+ responseLength += 1 + this.buffer[4] + 2 // length byte + domain + port
340
+ } else if (addressType === ADDRESS_TYPES.IPV6) {
341
+ responseLength += 16 + 2 // IPv6 + port
342
+ } else {
343
+ throw new Socks5ProxyError(`Invalid address type in reply: ${addressType}`, 'UND_ERR_SOCKS5_ADDR_TYPE')
344
+ }
345
+
346
+ if (this.buffer.length < responseLength) {
347
+ return // Not enough data for full response
348
+ }
349
+
350
+ if (reply !== REPLY_CODES.SUCCEEDED) {
351
+ const errorMessage = this.getReplyErrorMessage(reply)
352
+ throw new Socks5ProxyError(`SOCKS5 connection failed: ${errorMessage}`, `UND_ERR_SOCKS5_REPLY_${reply}`)
353
+ }
354
+
355
+ // Parse bound address and port
356
+ let boundAddress
357
+ let offset = 4
358
+
359
+ if (addressType === ADDRESS_TYPES.IPV4) {
360
+ boundAddress = Array.from(this.buffer.subarray(offset, offset + 4)).join('.')
361
+ offset += 4
362
+ } else if (addressType === ADDRESS_TYPES.DOMAIN) {
363
+ const domainLength = this.buffer[offset]
364
+ offset += 1
365
+ boundAddress = this.buffer.subarray(offset, offset + domainLength).toString()
366
+ offset += domainLength
367
+ } else if (addressType === ADDRESS_TYPES.IPV6) {
368
+ // Parse IPv6 address from 16-byte buffer
369
+ const parts = []
370
+ for (let i = 0; i < 8; i++) {
371
+ const value = this.buffer.readUInt16BE(offset + i * 2)
372
+ parts.push(value.toString(16))
373
+ }
374
+ boundAddress = parts.join(':')
375
+ offset += 16
376
+ }
377
+
378
+ const boundPort = this.buffer.readUInt16BE(offset)
379
+
380
+ this.buffer = EMPTY_BUFFER
381
+ this.state = STATES.CONNECTED
382
+ this.socket.removeListener('data', this.onSocketData)
383
+
384
+ debug('connected, bound address:', boundAddress, 'port:', boundPort)
385
+ this.emit('connected', { address: boundAddress, port: boundPort })
386
+ }
387
+
388
+ /**
389
+ * Get human-readable error message for reply code
390
+ */
391
+ getReplyErrorMessage (reply) {
392
+ switch (reply) {
393
+ case REPLY_CODES.GENERAL_FAILURE:
394
+ return 'General SOCKS server failure'
395
+ case REPLY_CODES.CONNECTION_NOT_ALLOWED:
396
+ return 'Connection not allowed by ruleset'
397
+ case REPLY_CODES.NETWORK_UNREACHABLE:
398
+ return 'Network unreachable'
399
+ case REPLY_CODES.HOST_UNREACHABLE:
400
+ return 'Host unreachable'
401
+ case REPLY_CODES.CONNECTION_REFUSED:
402
+ return 'Connection refused'
403
+ case REPLY_CODES.TTL_EXPIRED:
404
+ return 'TTL expired'
405
+ case REPLY_CODES.COMMAND_NOT_SUPPORTED:
406
+ return 'Command not supported'
407
+ case REPLY_CODES.ADDRESS_TYPE_NOT_SUPPORTED:
408
+ return 'Address type not supported'
409
+ default:
410
+ return `Unknown error code: ${reply}`
411
+ }
412
+ }
413
+ }
414
+
415
+ module.exports = {
416
+ Socks5Client,
417
+ AUTH_METHODS,
418
+ COMMANDS,
419
+ ADDRESS_TYPES,
420
+ REPLY_CODES,
421
+ STATES
422
+ }
@@ -0,0 +1,212 @@
1
+ 'use strict'
2
+
3
+ const { Buffer } = require('node:buffer')
4
+ const net = require('node:net')
5
+ const { InvalidArgumentError } = require('./errors')
6
+
7
+ /**
8
+ * Parse an address and determine its type
9
+ * @param {string} address - The address to parse
10
+ * @returns {{type: number, buffer: Buffer}} Address type and buffer
11
+ */
12
+ function parseAddress (address) {
13
+ // Check if it's an IPv4 address
14
+ if (net.isIPv4(address)) {
15
+ const parts = address.split('.').map(Number)
16
+ return {
17
+ type: 0x01, // IPv4
18
+ buffer: Buffer.from(parts)
19
+ }
20
+ }
21
+
22
+ // Check if it's an IPv6 address
23
+ if (net.isIPv6(address)) {
24
+ return {
25
+ type: 0x04, // IPv6
26
+ buffer: parseIPv6(address)
27
+ }
28
+ }
29
+
30
+ // Otherwise, treat as domain name
31
+ const domainBuffer = Buffer.from(address, 'utf8')
32
+ if (domainBuffer.length > 255) {
33
+ throw new InvalidArgumentError('Domain name too long (max 255 bytes)')
34
+ }
35
+
36
+ return {
37
+ type: 0x03, // Domain
38
+ buffer: Buffer.concat([Buffer.from([domainBuffer.length]), domainBuffer])
39
+ }
40
+ }
41
+
42
+ /**
43
+ * Parse IPv6 address to buffer
44
+ * @param {string} address - IPv6 address string
45
+ * @returns {Buffer} 16-byte buffer
46
+ */
47
+ function parseIPv6 (address) {
48
+ const buffer = Buffer.alloc(16)
49
+ let normalizedAddress = address
50
+
51
+ // Expand an embedded IPv4 tail into the last two IPv6 groups.
52
+ if (address.includes('.')) {
53
+ const lastColonIndex = address.lastIndexOf(':')
54
+ const ipv4Part = address.slice(lastColonIndex + 1)
55
+
56
+ if (net.isIPv4(ipv4Part)) {
57
+ const octets = ipv4Part.split('.').map(Number)
58
+ const high = ((octets[0] << 8) | octets[1]).toString(16)
59
+ const low = ((octets[2] << 8) | octets[3]).toString(16)
60
+ normalizedAddress = `${address.slice(0, lastColonIndex)}:${high}:${low}`
61
+ }
62
+ }
63
+
64
+ // Handle compressed notation (::)
65
+ const doubleColonIndex = normalizedAddress.indexOf('::')
66
+ if (doubleColonIndex !== -1) {
67
+ const before = normalizedAddress.slice(0, doubleColonIndex)
68
+ const after = normalizedAddress.slice(doubleColonIndex + 2)
69
+ const beforeParts = before === '' ? [] : before.split(':')
70
+ const afterParts = after === '' ? [] : after.split(':')
71
+
72
+ let bufferIndex = 0
73
+ for (const part of beforeParts) {
74
+ buffer.writeUInt16BE(parseInt(part, 16), bufferIndex)
75
+ bufferIndex += 2
76
+ }
77
+ bufferIndex = 16 - afterParts.length * 2
78
+ for (const part of afterParts) {
79
+ buffer.writeUInt16BE(parseInt(part, 16), bufferIndex)
80
+ bufferIndex += 2
81
+ }
82
+ } else {
83
+ const parts = normalizedAddress.split(':')
84
+ for (let i = 0; i < parts.length; i++) {
85
+ buffer.writeUInt16BE(parseInt(parts[i], 16), i * 2)
86
+ }
87
+ }
88
+
89
+ return buffer
90
+ }
91
+
92
+ /**
93
+ * Build a SOCKS5 address buffer
94
+ * @param {number} type - Address type (1=IPv4, 3=Domain, 4=IPv6)
95
+ * @param {Buffer} addressBuffer - The address data
96
+ * @param {number} port - Port number
97
+ * @returns {Buffer} Complete address buffer including type, address, and port
98
+ */
99
+ function buildAddressBuffer (type, addressBuffer, port) {
100
+ const portBuffer = Buffer.allocUnsafe(2)
101
+ portBuffer.writeUInt16BE(port, 0)
102
+
103
+ return Buffer.concat([
104
+ Buffer.from([type]),
105
+ addressBuffer,
106
+ portBuffer
107
+ ])
108
+ }
109
+
110
+ /**
111
+ * Parse address from SOCKS5 response
112
+ * @param {Buffer} buffer - Buffer containing the address
113
+ * @param {number} offset - Starting offset in buffer
114
+ * @returns {{address: string, port: number, bytesRead: number}}
115
+ */
116
+ function parseResponseAddress (buffer, offset = 0) {
117
+ if (buffer.length < offset + 1) {
118
+ throw new InvalidArgumentError('Buffer too small to contain address type')
119
+ }
120
+
121
+ const addressType = buffer[offset]
122
+ let address
123
+ let currentOffset = offset + 1
124
+
125
+ switch (addressType) {
126
+ case 0x01: { // IPv4
127
+ if (buffer.length < currentOffset + 6) {
128
+ throw new InvalidArgumentError('Buffer too small for IPv4 address')
129
+ }
130
+ address = Array.from(buffer.subarray(currentOffset, currentOffset + 4)).join('.')
131
+ currentOffset += 4
132
+ break
133
+ }
134
+
135
+ case 0x03: { // Domain
136
+ if (buffer.length < currentOffset + 1) {
137
+ throw new InvalidArgumentError('Buffer too small for domain length')
138
+ }
139
+ const domainLength = buffer[currentOffset]
140
+ currentOffset += 1
141
+
142
+ if (buffer.length < currentOffset + domainLength + 2) {
143
+ throw new InvalidArgumentError('Buffer too small for domain address')
144
+ }
145
+ address = buffer.subarray(currentOffset, currentOffset + domainLength).toString('utf8')
146
+ currentOffset += domainLength
147
+ break
148
+ }
149
+
150
+ case 0x04: { // IPv6
151
+ if (buffer.length < currentOffset + 18) {
152
+ throw new InvalidArgumentError('Buffer too small for IPv6 address')
153
+ }
154
+ // Convert buffer to IPv6 string
155
+ const parts = []
156
+ for (let i = 0; i < 8; i++) {
157
+ const value = buffer.readUInt16BE(currentOffset + i * 2)
158
+ parts.push(value.toString(16))
159
+ }
160
+ address = parts.join(':')
161
+ currentOffset += 16
162
+ break
163
+ }
164
+
165
+ default:
166
+ throw new InvalidArgumentError(`Invalid address type: ${addressType}`)
167
+ }
168
+
169
+ // Parse port
170
+ if (buffer.length < currentOffset + 2) {
171
+ throw new InvalidArgumentError('Buffer too small for port')
172
+ }
173
+ const port = buffer.readUInt16BE(currentOffset)
174
+ currentOffset += 2
175
+
176
+ return {
177
+ address,
178
+ port,
179
+ bytesRead: currentOffset - offset
180
+ }
181
+ }
182
+
183
+ /**
184
+ * Create error for SOCKS5 reply code
185
+ * @param {number} replyCode - SOCKS5 reply code
186
+ * @returns {Error} Appropriate error object
187
+ */
188
+ function createReplyError (replyCode) {
189
+ const messages = {
190
+ 0x01: 'General SOCKS server failure',
191
+ 0x02: 'Connection not allowed by ruleset',
192
+ 0x03: 'Network unreachable',
193
+ 0x04: 'Host unreachable',
194
+ 0x05: 'Connection refused',
195
+ 0x06: 'TTL expired',
196
+ 0x07: 'Command not supported',
197
+ 0x08: 'Address type not supported'
198
+ }
199
+
200
+ const message = messages[replyCode] || `Unknown SOCKS5 error code: ${replyCode}`
201
+ const error = new Error(message)
202
+ error.code = `SOCKS5_${replyCode}`
203
+ return error
204
+ }
205
+
206
+ module.exports = {
207
+ parseAddress,
208
+ parseIPv6,
209
+ buildAddressBuffer,
210
+ parseResponseAddress,
211
+ createReplyError
212
+ }
@@ -0,0 +1,75 @@
1
+ 'use strict'
2
+
3
+ module.exports = {
4
+ kClose: Symbol('close'),
5
+ kDestroy: Symbol('destroy'),
6
+ kDispatch: Symbol('dispatch'),
7
+ kUrl: Symbol('url'),
8
+ kWriting: Symbol('writing'),
9
+ kResuming: Symbol('resuming'),
10
+ kQueue: Symbol('queue'),
11
+ kConnect: Symbol('connect'),
12
+ kConnecting: Symbol('connecting'),
13
+ kKeepAliveDefaultTimeout: Symbol('default keep alive timeout'),
14
+ kKeepAliveMaxTimeout: Symbol('max keep alive timeout'),
15
+ kKeepAliveTimeoutThreshold: Symbol('keep alive timeout threshold'),
16
+ kKeepAliveTimeoutValue: Symbol('keep alive timeout'),
17
+ kKeepAlive: Symbol('keep alive'),
18
+ kHeadersTimeout: Symbol('headers timeout'),
19
+ kBodyTimeout: Symbol('body timeout'),
20
+ kServerName: Symbol('server name'),
21
+ kLocalAddress: Symbol('local address'),
22
+ kHost: Symbol('host'),
23
+ kNoRef: Symbol('no ref'),
24
+ kBodyUsed: Symbol('used'),
25
+ kBody: Symbol('abstracted request body'),
26
+ kRunning: Symbol('running'),
27
+ kBlocking: Symbol('blocking'),
28
+ kPending: Symbol('pending'),
29
+ kSize: Symbol('size'),
30
+ kBusy: Symbol('busy'),
31
+ kQueued: Symbol('queued'),
32
+ kFree: Symbol('free'),
33
+ kConnected: Symbol('connected'),
34
+ kClosed: Symbol('closed'),
35
+ kNeedDrain: Symbol('need drain'),
36
+ kReset: Symbol('reset'),
37
+ kDestroyed: Symbol.for('nodejs.stream.destroyed'),
38
+ kResume: Symbol('resume'),
39
+ kOnError: Symbol('on error'),
40
+ kMaxHeadersSize: Symbol('max headers size'),
41
+ kRunningIdx: Symbol('running index'),
42
+ kPendingIdx: Symbol('pending index'),
43
+ kError: Symbol('error'),
44
+ kClients: Symbol('clients'),
45
+ kClient: Symbol('client'),
46
+ kParser: Symbol('parser'),
47
+ kOnDestroyed: Symbol('destroy callbacks'),
48
+ kPipelining: Symbol('pipelining'),
49
+ kSocket: Symbol('socket'),
50
+ kHostHeader: Symbol('host header'),
51
+ kConnector: Symbol('connector'),
52
+ kStrictContentLength: Symbol('strict content length'),
53
+ kMaxRedirections: Symbol('maxRedirections'),
54
+ kMaxRequests: Symbol('maxRequestsPerClient'),
55
+ kProxy: Symbol('proxy agent options'),
56
+ kCounter: Symbol('socket request counter'),
57
+ kMaxResponseSize: Symbol('max response size'),
58
+ kHTTP2Session: Symbol('http2Session'),
59
+ kHTTP2SessionState: Symbol('http2Session state'),
60
+ kRetryHandlerDefaultRetry: Symbol('retry agent default retry'),
61
+ kConstruct: Symbol('constructable'),
62
+ kListeners: Symbol('listeners'),
63
+ kHTTPContext: Symbol('http context'),
64
+ kMaxConcurrentStreams: Symbol('max concurrent streams'),
65
+ kHTTP2InitialWindowSize: Symbol('http2 initial window size'),
66
+ kHTTP2ConnectionWindowSize: Symbol('http2 connection window size'),
67
+ kEnableConnectProtocol: Symbol('http2session connect protocol'),
68
+ kRemoteSettings: Symbol('http2session remote settings'),
69
+ kHTTP2Stream: Symbol('http2session client stream'),
70
+ kPingInterval: Symbol('ping interval'),
71
+ kNoProxyAgent: Symbol('no proxy agent'),
72
+ kHttpProxyAgent: Symbol('http proxy agent'),
73
+ kHttpsProxyAgent: Symbol('https proxy agent'),
74
+ kSocks5ProxyAgent: Symbol('socks5 proxy agent')
75
+ }