= private = protected
proxy_basic_auth(account, password)
Set Proxy-Authorization: header for "Basic" authorization.
# File lib/net/http.rb, line 1444 def proxy_basic_auth(account, password) @header['proxy-authorization'] = [basic_encode(account, password)] end