Changeset 64b6517
- Timestamp:
- 04/08/06 01:33:04 (16 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 0220eb1
- Parents:
- 7b4b5ab
- Location:
- lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/protocols.c
r9231fe5 r64b6517 7 7 #include "wag.h" 8 8 #include <assert.h> 9 #include <stdio.h> 9 10 10 11 … … 181 182 case TRACE_TYPE_ATM: 182 183 return trace_get_payload_from_atm(link,type,remaining); 183 default: 184 fprintf(stderr,"Don't understand link layer type %i in trace_get_ip6()\n", 185 linktype); 186 return NULL; 187 } 184 } 185 fprintf(stderr,"Don't understand link layer type %i in trace_get_ip6()\n", 186 linktype); 187 return NULL; 188 188 } 189 189 -
lib/rt_protocol.h
rb51edf5 r64b6517 3 3 4 4 #include "libtrace.h" 5 #ifdef HAVE_PCAP 5 6 #include <pcap.h> 7 #endif 6 8 7 9 #define CAPTURE_PORT 3434 … … 59 61 RT_DATA_LEGACY_ETH =RT_DATA_SIMPLE + TRACE_FORMAT_LEGACY_ETH, 60 62 63 #ifdef HAVE_PCAP 61 64 RT_DATA_PCAP_NULL =RT_DATA_PCAP + DLT_NULL, 62 65 RT_DATA_PCAP_EN10MB =RT_DATA_PCAP + DLT_EN10MB, … … 68 71 #ifdef DLT_PFLOG 69 72 RT_DATA_PCAP_PFLOG =RT_DATA_PCAP + DLT_PFLOG, 73 #endif 70 74 #endif 71 75 RT_LAST = 3000
Note: See TracChangeset
for help on using the changeset viewer.