Sha256: 580245128fd5f47d1a99714f96b4245675b35f1ec448d51892d93109aeb4af4e

Contents?: true

Size: 1.56 KB

Versions: 43

Compression:

Stored size: 1.56 KB

Contents

# Copyright, 2017, by Samuel G. D. Williams. <http://www.codeotaku.com>
# 
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

require_relative 'http1/client'
require_relative 'http1/server'

module Async
	module HTTP
		module Protocol
			module HTTP1
				VERSION = "HTTP/1.1"
				
				def self.client(stream)
					Client.new(stream, VERSION)
				end
				
				# A server that supports both HTTP1.0 and HTTP1.1 semantics by detecting the version of the request.
				# TODO Verify correct behaviour.
				def self.server(stream)
					Server.new(stream, VERSION)
				end
			end
		end
	end
end

Version data entries

43 entries across 43 versions & 1 rubygems

Version Path
async-http-0.45.9 lib/async/http/protocol/http1.rb
async-http-0.45.8 lib/async/http/protocol/http1.rb
async-http-0.45.7 lib/async/http/protocol/http1.rb
async-http-0.45.6 lib/async/http/protocol/http1.rb
async-http-0.45.4 lib/async/http/protocol/http1.rb
async-http-0.45.3 lib/async/http/protocol/http1.rb
async-http-0.45.2 lib/async/http/protocol/http1.rb
async-http-0.45.1 lib/async/http/protocol/http1.rb
async-http-0.45.0 lib/async/http/protocol/http1.rb
async-http-0.44.0 lib/async/http/protocol/http1.rb
async-http-0.43.1 lib/async/http/protocol/http1.rb
async-http-0.43.0 lib/async/http/protocol/http1.rb
async-http-0.42.0 lib/async/http/protocol/http1.rb
async-http-0.41.2 lib/async/http/protocol/http1.rb
async-http-0.41.1 lib/async/http/protocol/http1.rb
async-http-0.41.0 lib/async/http/protocol/http1.rb
async-http-0.40.3 lib/async/http/protocol/http1.rb
async-http-0.40.2 lib/async/http/protocol/http1.rb
async-http-0.40.1 lib/async/http/protocol/http1.rb
async-http-0.40.0 lib/async/http/protocol/http1.rb