summaryrefslogtreecommitdiff
path: root/lib/http.js
Commit message (Expand)AuthorAgeFilesLines
* lib: support overriding http\s.globalAgentRoy Sommer2019-01-091-3/+13
* http: add maxHeaderSize propertycjihrig2018-12-251-0/+14
* http: allow url and options to be passed to http*.request and http*.getSam Ruby2018-07-131-4/+4
* http: support server options on createServerWes Todd2018-03-251-2/+2
* http: use more destructuringTobias Nießen2018-03-221-15/+18
* lib: use destructuring for some constantsWeijia Wang2017-10-161-3/+2
* http: use more efficient module.exports patternJames M Snell2017-03-201-21/+29
* meta: restore original copyright headerJames M Snell2017-03-101-0/+21
* http: name anonymous functions in httpmaasencioh2016-10-181-3/+3
* http: remove deprecated Client interfaceBrian White2016-08-291-76/+10
* lib,src: remove usage of events.EventEmitterSakthipriyan Vairamani2015-09-231-1/+1
* util: prepend '(node) ' to deprecation messagesSakthipriyan Vairamani2015-07-031-4/+4
* http: replace util._extend() with [].slice()Jonathan Ong2015-02-021-1/+1
* lib: use const to define constantscjihrig2015-01-211-9/+9
* Remove excessive copyright/license boilerplateisaacs2015-01-121-21/+0
* lib: turn on strict modeBen Noordhuis2014-11-221-0/+2
* lib: unexport http.parsersBen Noordhuis2014-09-051-1/+0
* lib: remove unused variablesBrian White2014-06-111-5/+3
* http, https: don't depend on `globalAgent`Nathan Rajlich2014-02-261-2/+4
* http: expose supported methodsBen Noordhuis2013-10-281-0/+1
* lib: remove unused variables and functionsBrian White2013-08-151-3/+1
* http: Fix overlooked agent.globalAgent exportisaacs2013-08-051-2/+1
* http: Add agent.get/request methodsisaacs2013-07-091-24/+4
* http: don't escape request path, reject bad charsBen Noordhuis2013-05-151-5/+8
* http: split Client into _http_client.jsTimothy J Fontaine2013-04-171-460/+2
* http: move Server and ServerResponse outTimothy J Fontaine2013-04-171-428/+6
* http: move OutgoingMessage into it's own fileTimothy J Fontaine2013-04-171-614/+6
* http: move parsers into _http_common.jsTimothy J Fontaine2013-04-171-180/+3
* http: move IncomingMessage into its own fileTimothy J Fontaine2013-04-171-153/+4
* http: split Agent into its own fileTimothy J Fontaine2013-04-171-130/+3
* http: escape unsafe characters in request pathBen Noordhuis2013-04-121-0/+5
* http: Support write(data, 'hex')isaacs2013-04-081-3/+6
* http: Remove legacy ECONNRESET workaround codeisaacs2013-04-031-17/+1
* http client: Ensure socket cleanup on response endisaacs2013-04-021-2/+8
* http: Don't hot-path end() for large buffersisaacs2013-03-141-0/+8
* stream: Don't emit 'end' unless read() calledisaacs2013-03-101-7/+7
* http: ServerRequest does not timeout after 'end'koichik2013-03-101-1/+1
* http: Do not setTimeout a not-yet-existent socketisaacs2013-03-101-1/+10
* http: check if incoming parser has already been freedhc2013-03-091-1/+1
* Revert "http: check if incoming parser has already been freed"isaacs2013-03-081-1/+1
* http: check if incoming parser has already been freedhheennrryy@gmail.com2013-03-081-1/+1
* http: More useful setTimeout API on serverisaacs2013-03-061-3/+37
* http: fix multiple timeout eventsEugene Girshov2013-03-061-2/+5
* Merge remote-tracking branch 'origin/v0.8'Ben Noordhuis2013-03-021-1/+1
|\
| * http: use socket.once, not socket.onBen Noordhuis2013-03-011-1/+1
* | events: add check for listeners lengthTrevor Norris2013-03-011-3/+3
* | stream: There is no _read cb, there is only pushisaacs2013-02-281-2/+2
* | Merge remote-tracking branch 'origin/v0.8'Ben Noordhuis2013-02-281-8/+20
|\ \ | |/
| * http: Do not free the wrong parser on socket closeisaacs2013-02-251-1/+2
| * http: Handle hangup writes more gentlyisaacs2013-02-221-5/+18