/[pxelator]/lib/PXElator/httpd.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /lib/PXElator/httpd.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 400 by dpavlin, Tue Sep 8 18:28:15 2009 UTC revision 405 by dpavlin, Tue Sep 8 21:06:40 2009 UTC
# Line 85  sub static { Line 85  sub static {
85    
86          return if ! -f $full;          return if ! -f $full;
87    
88            return if $full =~ m{\.ico$};
89    
90          if ( my $pid = fork ) {          if ( my $pid = fork ) {
91                  # parent                  # parent
92                  close($client);                  close($client);
# Line 215  warn "XXX pids = ", dump( $daemons::pids Line 217  warn "XXX pids = ", dump( $daemons::pids
217                          }                          }
218                  }                  }
219    
220                    my $kvm = kvm::next_nr;
221                    $kvm = qq|<a href=/start_stop/kvm?nr=$kvm>new kvm $kvm</a>|;
222    
223                  print $client ok                  print $client ok
224                          , html::table( 2, @rows )                          , html::table( 2, @rows )
225                            , $kvm
226                          , $below_table                          , $below_table
227                          , html::tabs( log::mac_changes )                          , html::tabs( log::mac_changes )
228                          , $debug_proc                          , $debug_proc
# Line 366  warn "XXX pids = ", dump( $daemons::pids Line 372  warn "XXX pids = ", dump( $daemons::pids
372                                  </form>                                  </form>
373                          |;                          |;
374                  }                  }
375    
376    
377          } elsif ( $path =~ m{^/brctl} ) {          } elsif ( $path =~ m{^/brctl} ) {
378                  print $client ok, html::table( -4,  
379                    system 'brctl addif virtual ' . $param->{addif} if $param->{addif};
380                    system 'brctl delif virtual ' . $param->{delif} if $param->{delif};
381    
382                    my $in_virtual;
383    
384                    my @table =
385                          map {                          map {
386                                  my @c = split(/\t+/,$_,4);                                  my @c = split(/\t+/,$_,4);
387                                  if ( $#c == 1 ) {                                  if ( $#c == 1 ) {
388                                          ( '', '', '', $c[1] )                                          $in_virtual->{ $c[1] }++;
389                                            @c = ( '', '', '', $c[1] );
390                                  } else {                                  } else {
391                                          @c                                          $in_virtual->{ $c[3] }++;
392                                    }
393                                    if ( $c[3] =~ m{\d$} ) {
394                                            $c[3] = qq|<input type=submit name=delif value=$c[3] style="color:red" title="remove $c[3] from bridge">|;
395                                  }                                  }
396                                    @c
397                          } split(/\n/, `brctl show`)                          } split(/\n/, `brctl show`)
398                  );                  ;
399    
400                    my @add_ifs = grep { ! $in_virtual->{$_} && $_ ne 'virtual' } ip::devices_up;
401    
402                    push @table, ( '', '', '', html::select( 'addif', @add_ifs ) . qq|<input type=submit value=add></form>| );
403    
404                    print $client ok
405                            , qq|<form>|
406                            , html::table( -4, @table )
407                            , qq|</form>|
408                            ;
409    
410    
411          } elsif ( $path =~ m{^/ip/?(\w+)?} ) {          } elsif ( $path =~ m{^/ip/?(\w+)?} ) {
412                  print $client ok                  print $client ok
413                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))                          , join("\n", map { qq|<a href=/ip/$_>$_</a>| } ( qw/link addr route neigh ntable tunnel maddr mroute xfrm/ ))
# Line 440  sub start { Line 471  sub start {
471          print "url $url\n";          print "url $url\n";
472    
473          syslogd::install_local;          syslogd::install_local;
474            client::rebuild_mac_links;
475    
476          while (1) {          while (1) {
477                  my $client = $server->accept() || next; # ALARM trickle us                  my $client = $server->accept() || next; # ALARM trickle us

Legend:
Removed from v.400  
changed lines
  Added in v.405

  ViewVC Help
Powered by ViewVC 1.1.26