Comparing version 3.2.3 to 3.2.4
@@ -81,4 +81,4 @@ 'use strict'; | ||
path: path, | ||
method: 'GET', | ||
status: 200, | ||
method: headers.method ? headers.method.toString() : 'GET', | ||
status: headers.status ? headers.status.toString() : 200, | ||
host: this.socket.parser.incoming.headers.host, | ||
@@ -85,0 +85,0 @@ headers: headers.request, |
{ | ||
"name": "spdy", | ||
"version": "3.2.3", | ||
"version": "3.2.4", | ||
"description": "Implementation of the SPDY protocol on node.js.", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
# SPDY Server for node.js | ||
[![Build Status](https://secure.travis-ci.org/indutny/node-spdy.png)](http://travis-ci.org/indutny/node-spdy) | ||
[![Build Status](https://travis-ci.org/indutny/node-spdy.svg?branch=master)](https://travis-ci.org/indutny/node-spdy) | ||
[![NPM version](https://badge.fury.io/js/spdy.svg)](http://badge.fury.io/js/spdy) | ||
@@ -124,2 +124,4 @@ | ||
var stream = res.push('/main.js', { | ||
status: 200, // optional | ||
method: 'GET', // optional | ||
request: { | ||
@@ -126,0 +128,0 @@ accept: '*/*' |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
63973
258