<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import java.lang.*;
import java.applet.*;
import java.awt.*;
import java.io.*;
import java.net.*;

public class DynMcufClientSend extends Thread
{
  private DatagramSocket sock;
  private DatagramPacket request;
  private boolean termReq = false;

  DynMcufClientSend( DatagramSocket sock, InetAddress host, int port )
  {
    this.sock = sock;
    byte[] data = { 0x42, 0x42, 0x42, 0x42, 0, 0, 0, 0, 0, 0, 0, 0 };
    request = new DatagramPacket( data, 12, host, port );
  }

  public void run( )
  {
    while( ! termReq )
    {
      try
      {
        sock.send( request );
      }
      catch( IOException e ) { }
      try
      {
        sleep( 10000 );
      }
      catch( InterruptedException e ) { }
    }
  }

  public void terminate( )
  {
    termReq = true;
    this.interrupt( );
  }
}
</pre></body></html>