parsing sflow question (sflowtool.c vs spec)

From: Mike Haberman <mikeh@ncsa.uiuc.edu>
Date: 09/10/06
Message-ID: <20060911045605.GA90900@ncsa.uiuc.edu>

Hi,

    I am writing a Java based parser for sFlows. I am having a problem
    resolving what sflowtool.c does and what the SFLOW-DATAGRAM5.txt
    shows.

    1. When sflowtool.c reads in a sample datagram, it does

        ...
       sample->sequenceNo = getData32(sample);
       sample->sysUpTime = getData32(sample);
       samplesInPacket = getData32(sample);

       Where samplesInPacket is even described in SFLOW-DATAGRAM5.txt. ?

     2. When sflowtool.c dispatchs on the sample type ...

       switch(sample->sampleType) {
       case SFLFLOW_SAMPLE: readFlowSample(sample, NO); break;
       case SFLCOUNTERS_SAMPLE: readCountersSample(sample, NO); break;
       case SFLFLOW_SAMPLE_EXPANDED: readFlowSample(sample, YES); break;
       case SFLCOUNTERS_SAMPLE_EXPANDED: readCountersSample(sample, YES); break;

         Each of those functions first does a read to get the sample length:

          sampleLength = getData32(sample);
          sample->samplesGenerated = getData32(sample);

        Where is sampleLength described in SFLOW-DATAGRAM5.txt ?
         

      I must not be reading something properly.. Thanks to anyone
      who can set me straight.

      thanks

      mike

-- 
----------------------------------
Mike Haberman
Senior Network Research Engineer
NCSA
----------------------------------
Received on Sun Sep 10 21:58:50 2006

This archive was generated by hypermail 2.1.8 : 09/10/06 PDT