#include "archinc.h"
#include "cli.h"
#include "strutil.h"
#include "zarlink.h"

#include <stdlib.h>


static unsigned char pingFrameData[128];

/*
 * The structure of an ethernet header is: 
 * | Source MAC (6 bytes)  | Dest MAC (6 bytes) | type (2 bytes) |
 *
 * A type of 0x0800 indicates an IP packet
 *
 * The ethernet trailer is a 32-bit CRC
 */

static int initPingPacket(char *pPktData, char *pSrcIp, char *pDstIp)
{
  int i;

  if (pPktData == NULL)
    return -1;

  
}


