/*
* http-stream.js: Idomatic buffered stream which pipes additional HTTP information.
*
* (C) 2011, Charlie Robbins & the Contributors
* MIT LICENSE
*
*/
var url = ,
util = ,
qs = ,
HttpStream = ;
var RequestStream = ;
util.;
//
// ### function pipeRequest (source)
// #### @source {ServerRequest|HttpStream} Source stream piping to this instance
// Pipes additional HTTP request metadata from the `source` HTTP stream (either concrete or
// abstract) to this instance. e.g. url, headers, query, etc.
//
// Remark: Is there anything else we wish to pipe?
//
;
// http.serverRequest methods
.;