Handling data
Data from the RemoteDataServer are wrapped in a ProcessedData structure.
struct ProcessedData
 {
  char Header[4]; // ”PRD\0”
  long SeqNo; // This is the sequence number of the current UDP message.
  long SubscriptionID; // Identification of current data
  unsigned short CurrentMsg; // Current message number
  unsigned short TotalMsg; // Total number of UDP messages
  unsigned short NoOfBytes; // Number of bytes in the following data field
  unsigned short Data[]; //This is the actual data. 
  
 };