Sha256: d1317fc7883395002fb1c4aa45aeca89db7626edc7500b8cee1c9f1e61d243c4

Contents?: true

Size: 679 Bytes

Versions: 13

Compression:

Stored size: 679 Bytes

Contents

# frozen_string_literal: true

# Released under the MIT License.
# Copyright, 2017-2024, by Samuel Williams.
# Copyright, 2024, by Thomas Morgan.

require_relative "http1"

module Async
	module HTTP
		module Protocol
			module HTTP10
				VERSION = "HTTP/1.0"
				
				def self.bidirectional?
					false
				end
				
				def self.trailer?
					false
				end
				
				def self.client(peer)
					stream = ::IO::Stream(peer)
					
					return HTTP1::Client.new(stream, VERSION)
				end
				
				def self.server(peer)
					stream = ::IO::Stream(peer)
					
					return HTTP1::Server.new(stream, VERSION)
				end
				
				def self.names
					["http/1.0"]
				end
			end
		end
	end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
async-http-0.84.0 lib/async/http/protocol/http10.rb
async-http-0.83.1 lib/async/http/protocol/http10.rb
async-http-0.83.0 lib/async/http/protocol/http10.rb
async-http-0.82.3 lib/async/http/protocol/http10.rb
async-http-0.82.2 lib/async/http/protocol/http10.rb
async-http-0.82.1 lib/async/http/protocol/http10.rb
async-http-0.82.0 lib/async/http/protocol/http10.rb
async-http-0.81.0 lib/async/http/protocol/http10.rb
async-http-0.80.1 lib/async/http/protocol/http10.rb
async-http-0.80.0 lib/async/http/protocol/http10.rb
async-http-0.79.0 lib/async/http/protocol/http10.rb
async-http-0.78.0 lib/async/http/protocol/http10.rb
async-http-0.77.0 lib/async/http/protocol/http10.rb