symbols.js 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. module.exports = {
  2. kClose: Symbol('close'),
  3. kDestroy: Symbol('destroy'),
  4. kDispatch: Symbol('dispatch'),
  5. kUrl: Symbol('url'),
  6. kWriting: Symbol('writing'),
  7. kResuming: Symbol('resuming'),
  8. kQueue: Symbol('queue'),
  9. kConnect: Symbol('connect'),
  10. kConnecting: Symbol('connecting'),
  11. kKeepAliveDefaultTimeout: Symbol('default keep alive timeout'),
  12. kKeepAliveMaxTimeout: Symbol('max keep alive timeout'),
  13. kKeepAliveTimeoutThreshold: Symbol('keep alive timeout threshold'),
  14. kKeepAliveTimeoutValue: Symbol('keep alive timeout'),
  15. kKeepAlive: Symbol('keep alive'),
  16. kHeadersTimeout: Symbol('headers timeout'),
  17. kBodyTimeout: Symbol('body timeout'),
  18. kServerName: Symbol('server name'),
  19. kLocalAddress: Symbol('local address'),
  20. kHost: Symbol('host'),
  21. kNoRef: Symbol('no ref'),
  22. kBodyUsed: Symbol('used'),
  23. kBody: Symbol('abstracted request body'),
  24. kRunning: Symbol('running'),
  25. kBlocking: Symbol('blocking'),
  26. kPending: Symbol('pending'),
  27. kSize: Symbol('size'),
  28. kBusy: Symbol('busy'),
  29. kQueued: Symbol('queued'),
  30. kFree: Symbol('free'),
  31. kConnected: Symbol('connected'),
  32. kClosed: Symbol('closed'),
  33. kNeedDrain: Symbol('need drain'),
  34. kReset: Symbol('reset'),
  35. kDestroyed: Symbol.for('nodejs.stream.destroyed'),
  36. kResume: Symbol('resume'),
  37. kOnError: Symbol('on error'),
  38. kMaxHeadersSize: Symbol('max headers size'),
  39. kRunningIdx: Symbol('running index'),
  40. kPendingIdx: Symbol('pending index'),
  41. kError: Symbol('error'),
  42. kClients: Symbol('clients'),
  43. kClient: Symbol('client'),
  44. kParser: Symbol('parser'),
  45. kOnDestroyed: Symbol('destroy callbacks'),
  46. kPipelining: Symbol('pipelining'),
  47. kSocket: Symbol('socket'),
  48. kHostHeader: Symbol('host header'),
  49. kConnector: Symbol('connector'),
  50. kStrictContentLength: Symbol('strict content length'),
  51. kMaxRedirections: Symbol('maxRedirections'),
  52. kMaxRequests: Symbol('maxRequestsPerClient'),
  53. kProxy: Symbol('proxy agent options'),
  54. kCounter: Symbol('socket request counter'),
  55. kInterceptors: Symbol('dispatch interceptors'),
  56. kMaxResponseSize: Symbol('max response size'),
  57. kHTTP2Session: Symbol('http2Session'),
  58. kHTTP2SessionState: Symbol('http2Session state'),
  59. kRetryHandlerDefaultRetry: Symbol('retry agent default retry'),
  60. kConstruct: Symbol('constructable'),
  61. kListeners: Symbol('listeners'),
  62. kHTTPContext: Symbol('http context'),
  63. kMaxConcurrentStreams: Symbol('max concurrent streams'),
  64. kNoProxyAgent: Symbol('no proxy agent'),
  65. kHttpProxyAgent: Symbol('http proxy agent'),
  66. kHttpsProxyAgent: Symbol('https proxy agent')
  67. }