Handle hostnames with upper-case letters
[webmin.git] / ppp-client / connect.cgi
1 #!/usr/local/bin/perl
2 # connect.cgi
3 # Attempt a connection to the Internet with wvdial, and show the results
4
5 require './ppp-client-lib.pl';
6 &ReadParse();
7 $theme_no_table++;
8 $| = 1;
9 &ui_print_header(undef, $text{'connect_title'}, "");
10
11 $connected = &ppp_connect($in{'section'}, 0);
12 &webmin_log("connect", $in{'section'}, $connected);
13
14 &ui_print_footer("", $text{'index_return'});
15
16