Changeset 827 for trunk/lib/protocols.c


Ignore:
Timestamp:
05/25/06 15:18:11 (7 years ago)
Author:
perry
Message:

Add new DUCK link type (for duck packets obviously).
Make get_payload_from_link on a duck packet return "NULL" (no payload)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/protocols.c

    r820 r827  
    208208                case TRACE_TYPE_ATM: 
    209209                        return trace_get_payload_from_atm(link,type,remaining); 
     210                case TRACE_TYPE_DUCK: 
     211                        return NULL; /* duck packets have no payload! */ 
    210212        } 
    211213        fprintf(stderr,"Don't understand link layer type %i in trace_get_payload_from_link()\n", 
Note: See TracChangeset for help on using the changeset viewer.