aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* examples/static_server: call ctx.tmp_ecdh_callback only when neededtopic/openssl-1.1.0Kazuki Yamaguchi2016-05-081-3/+5
| | | | Same as the previous commit.
* rack/listener: tls: call tmp_ecdh_callback only when neededKazuki Yamaguchi2016-05-081-1/+3
| | | | | | | | OpenSSL::SSL::SSLContext#tmp_ecdh_callback will be removed and probably OpenSSL::SSL::SSLContext#set_ecdh_curves will be added. If using OpenSSL 1.0.2 or 1.1.0 (is required), it has 'default supported curves' so we don't need to set the curve to use explicitly.
* Merge branch 'topic/client-redesign-api'Kazuki Yamaguchi2016-05-089-168/+157
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | * topic/client-redesign-api: readme: fix the flow chart showing how it connects to the server readme/example: replace obsolete Client#[http-method]! examples client: add Response#join method client: call the block passed to Client#request in Response#set_headers client: make Response's internal methods private client: Client#resume always waits all requests client: remove synchronous HTTP method methods client: OpenSSL::SSL::SSLContext always responds to hostname= client: replace 'scheme' option with 'https' option client: remove http2 (enable or disable HTTP/2) option
| * readme: fix the flow chart showing how it connects to the serverKazuki Yamaguchi2016-05-081-8/+4
| |
| * readme/example: replace obsolete Client#[http-method]! examplestopic/client-redesign-apiKazuki Yamaguchi2016-05-082-7/+9
| | | | | | | | | | They are gone. Instead, replace these examples with new Reponse#join methods.
| * client: add Response#join methodKazuki Yamaguchi2016-05-086-15/+49
| | | | | | | | This method waits until the response completes.
| * client: call the block passed to Client#request in Response#set_headersKazuki Yamaguchi2016-05-084-12/+35
| | | | | | | | This reduces code lines.
| * client: make Response's internal methods privateKazuki Yamaguchi2016-05-084-48/+46
| | | | | | | | | | And use Object#send to call them. Since they are internal, there should be no problem.
| * client: Client#resume always waits all requestsKazuki Yamaguchi2016-05-082-11/+4
| |
| * client: remove synchronous HTTP method methodsKazuki Yamaguchi2016-05-082-44/+0
| | | | | | | | Using them is a bad habit.
| * client: OpenSSL::SSL::SSLContext always responds to hostname=Kazuki Yamaguchi2016-05-081-2/+4
| | | | | | | | OpenSSL supports SNI since 0.9.8f and 1.0.0.
| * client: replace 'scheme' option with 'https' optionKazuki Yamaguchi2016-05-083-7/+7
| | | | | | | | The scheme is always 'http' or 'https', so boolean is sufficient.
| * client: remove http2 (enable or disable HTTP/2) optionKazuki Yamaguchi2016-05-082-22/+7
| |
* | Merge branch 'topic/fix-magic-comment-style'Kazuki Yamaguchi2016-05-0842-42/+84
|\ \ | |/ |/| | | | | * topic/fix-magic-comment-style: get rid of '-*- flag: value -*-' style in magic comments
| * get rid of '-*- flag: value -*-' style in magic commentstopic/fix-magic-comment-styleKazuki Yamaguchi2016-05-0842-42/+84
|/ | | | It was required when they were added, but it is no longer.
* circle: Ruby 2.3.1Kazuki Yamaguchi2016-04-281-2/+2
|
* travis/circle: OpenSSL 1.0.2gKazuki Yamaguchi2016-04-212-2/+2
|
* avoid verbose warningsKazuki Yamaguchi2016-04-218-11/+9
|
* travis/circle: openssl 1.0.2fKazuki Yamaguchi2016-02-162-2/+2
|
* rack: on mingw64 Errno::ECONNABORTED raised when closed by remoteKazuki Yamaguchi2016-02-161-3/+3
|
* test: fix error on mingw64Kazuki Yamaguchi2016-02-161-2/+6
|
* bump version to 0.2.10v0.2.10Kazuki Yamaguchi2016-01-171-1/+1
|
* stream: fix Stream Dependency field handlingKazuki Yamaguchi2016-01-172-4/+4
|
* rack: fix legacy-fallbackKazuki Yamaguchi2016-01-174-6/+8
|
* rack: remove threaded option. use threadpool_size=1 insteadKazuki Yamaguchi2016-01-146-15/+5
|
* rack/handler: add Threads options to specify threadpool_sizeKazuki Yamaguchi2016-01-141-4/+7
|
* codeclimate: ignore examplesKazuki Yamaguchi2016-01-141-0/+2
|
* bump version to 0.2.9v0.2.9Kazuki Yamaguchi2016-01-141-1/+1
|
* Merge branch 'threaded'Kazuki Yamaguchi2016-01-149-90/+184
|\
| * rack: remove unused codethreadedKazuki Yamaguchi2016-01-141-20/+0
| |
| * rack: refactorKazuki Yamaguchi2016-01-146-116/+148
| |
| * rack: add threadpool-size optionKazuki Yamaguchi2016-01-137-10/+92
| |
* | bin/plum: unshift $:Kazuki Yamaguchi2016-01-131-1/+1
|/
* bump version to 0.2.8; no changes from 0.2.3v0.2.8Kazuki Yamaguchi2016-01-031-1/+1
|
* bump version to 0.2.3v0.2.3Kazuki Yamaguchi2016-01-031-1/+1
|
* test: use SimpleCov.formatters=Kazuki Yamaguchi2016-01-032-3/+1
|
* drop Ruby 2.2 supportKazuki Yamaguchi2015-12-1811-39/+35
|
* client: remove NPN support (Ruby 2.3.0 will be released soon)Kazuki Yamaguchi2015-12-183-11/+4
|
* refactorKazuki Yamaguchi2015-12-181-26/+32
|
* rack: tls_session: generate dummy cert with SHA-256Kazuki Yamaguchi2015-12-181-5/+4
|
* rack/tls_listener: fix ArgumentError (TODO: why?)Kazuki Yamaguchi2015-11-161-1/+1
|
* rack: add option to drop privilegesKazuki Yamaguchi2015-11-163-0/+33
|
* rack/tls_listener: sniKazuki Yamaguchi2015-11-162-8/+37
|
* server/connection: reorganize subclassesKazuki Yamaguchi2015-11-1612-37/+27
| | | | | * HTTPSServerConnection is renamed to SSLSocketServerConnection * HTTPServerConnection now accepts writer Proc (Method) instead of IO
* stream: don't raise LocalStreamError when received RST_STREAM but callback ↵Kazuki Yamaguchi2015-11-166-17/+14
| | | | :rst_stream
* bump version to 0.2.2v0.2.2Kazuki Yamaguchi2015-11-151-1/+1
|
* rack: add fallback-legacy option (fallback to backend HTTP/1.x server if ↵Kazuki Yamaguchi2015-11-157-42/+102
| | | | client doesn't support HTTP/2)
* rack/session: don't remove x-Kazuki Yamaguchi2015-11-151-1/+0
|
* Merge branch 'master' of github.com:rhenium/plumKazuki Yamaguchi2015-11-151-0/+1
|\
| * rack/session: pass HTTP_VERSION=HTTP/2.0 to request env (Rack::CommonLogger ↵Kazuki Yamaguchi2015-11-131-0/+1
| | | | | | | | uses)