1 2 3 4 5 6 7 8 9 10 11 | local @LWP ::Protocol::http::EXTRA_SOCK_OPTS = ( PeerAddr => $my_hostname , MultiHomed => 1, ); my $ua = LWP::UserAgent->new; Content_Type => 'application/x-www-form-urlencoded; charset=utf-8' , Content => { param1 => 'value1' , param2 => 'value2' , }); |