class EventMachine::Protocols::HttpClient2::Request

def receive_chunk_trailer ln


--
def receive_chunk_trailer ln
  if ln.length == 0
    @conn.pop_request
    succeed(self)
  else
    p "Received chunk trailer line"
  end
end