#include <stdlib.h>
#include "string.h"


void xGetDestination(char *IPAddr, int *Port)
{
  strcpy(IPAddr, "localhost\0");
  (*Port)= 6969; /* Dereferencing */

  return;  
}
