Changeset 713
- Timestamp:
- 07/20/07 16:17:36 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-firefox/lib/HoneyClient/Manager.pm
r710 r713 649 649 sleep (2); 650 650 651 # Recreate the client stub; ignore faults.652 $stubAgent = getClientHandle(namespace => "HoneyClient::Agent",653 address => $vmIP,654 fault_handler => \&_handleFault);655 656 # Recreate the firewall stub; ignore faults.657 $stubFW = getClientHandle(namespace => "HoneyClient::Manager::FW",658 fault_handler => \&_handleFault);659 660 651 # Call updateState() first, to seed initial data. 661 652 # TODO: Need to support asynchronous updates (url adding) … … 663 654 print "Calling updateState()...\n"; 664 655 $som = $stubAgent->updateState($args{'agent_state'}); 656 657 # Recreate the client stub; ignore faults. 658 $stubAgent = getClientHandle(namespace => "HoneyClient::Agent", 659 address => $vmIP, 660 fault_handler => \&_handleFault); 661 662 # Recreate the firewall stub; ignore faults. 663 $stubFW = getClientHandle(namespace => "HoneyClient::Manager::FW", 664 fault_handler => \&_handleFault); 665 665 666 666 for (my $counter = 1;; $counter++) {
