class HTTPClient::ProxyAuth

def set_auth(user, passwd)

Set authentication credential. See sub filters for more details.
def set_auth(user, passwd)
  @authenticator.each do |auth|
    auth.set(nil, user, passwd)
  end
  reset_challenge
end