in reply to Re^4: Setting HTTP Protocol Version
in thread Setting HTTP Protocol Version

in LWP::Protocol::http10, why aren't you looking?

Replies are listed 'Best First'.
Re^6: Setting HTTP Protocol Version
by wagnerc (Sexton) on Aug 28, 2009 at 12:12 UTC
    LWP::Protocol::http10 has no protocol() method. Nor does LWP::Protocol have one. Don't me smarmy. I combed the source code of all those modules before I even posted.

    Implementor is poorly documented and LWP::Protocol::http10 is not documented at all. So don't act like "I should just know."

      LWP::Protocol::http10 has no protocol() method. Nor does LWP::Protocol have one. Don't me smarmy.

      I said look for ->protocol, not a protocol method.

      I combed the source code of all those modules before I even posted.

      Combed? Try Ctrl+F

      Implementor is poorly documented and LWP::Protocol::http10 is not documented at all.

      Can you explain how?

      So don't act like "I should just know."

      Huh?

        The string "->protocol" only appears in http10.pm in reference to a response object.

        $response = HTTP::Response->new($code, $msg); $response->protocol($ver);
        The string does not appear at all in Protocol.pm.

        Can u explain what ur getting at?