Class: Arpie::HTTPServerTestProtocol

Inherits:
HTTPTestProtocol show all
Defined in:
lib/arpie/xmlrpc.rb

Constant Summary

Constants inherited from HTTPTestProtocol

Arpie::HTTPTestProtocol::CAN_SEPARATE_MESSAGES

Constants inherited from Protocol

Protocol::CAN_SEPARATE_MESSAGES

Constants included from Arpie

MTU

Instance Attribute Summary

Attributes inherited from Protocol

#metabuffer, #stowbuffer

Instance Method Summary collapse

Methods inherited from HTTPTestProtocol

#from

Methods inherited from Protocol

#again!, #assemble, #assemble!, #from

Methods included from Arpie

#bogon!, #incomplete!

Instance Method Details

#to(object) {|"HTTP/1.0 200 OK\r\nContent-Length: #{object.size}\r\n\r\n" + object| ... } ⇒ Object

Yields:

  • ("HTTP/1.0 200 OK\r\nContent-Length: #{object.size}\r\n\r\n" + object)


104
105
106
# File 'lib/arpie/xmlrpc.rb', line 104

def to object
  yield "HTTP/1.0 200 OK\r\nContent-Length: #{object.size}\r\n\r\n" + object
end