Merged
Merged
Conversation
| $http->on('request', function (Request $request, Response $response) { | ||
| if ($request->expectsContinue()) { | ||
| $response->writeContinue(); | ||
| } |
clue
mentioned this pull request
Closed
| public function expectsContinue() | ||
| { | ||
| return isset($this->headers['Expect']) && '100-continue' === $this->headers['Expect']; | ||
| return '100-continue' === $this->getHeaderLine('Expect'); |
clue
changed the title
Fix headers to be handled case insensitive and add documentation for
Fix headers to be handled case insensitive and ignore 100-continue for HTTP/1.0writeHead() and writeContinue()
jsor approved these changes Feb 11, 2017
clue deleted the fix-headers branch
February 11, 2017 14:26This was referenced
Feb 11, 2017Merged
Closed
clue
mentioned this pull request
Merged