Changeset 25024fd
- Timestamp:
- 12/03/07 23:10:18 (13 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:
- 4423dc7
- Parents:
- 25a9201
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/libtrace_int.h
r50bbce8 r25024fd 119 119 struct libtrace_event_status_t { 120 120 libtrace_packet_t *packet; 121 int psize;122 121 double tdelta; 123 122 double trace_last_ts; 123 int psize; 124 124 }; 125 125 … … 129 129 struct libtrace_t { 130 130 struct libtrace_format_t *format; /**< format driver pointer */ 131 struct libtrace_event_status_t event; /**< the next event */ 131 132 void *format_data; /**<format data pointer */ 132 bool started; /**< if this trace has started */133 libtrace_err_t err; /**< error information */134 struct libtrace_event_status_t event; /**< the next event */135 133 struct libtrace_filter_t *filter; /**< used by libtrace if the module 136 134 * doesn't support filters natively … … 147 145 char *uridata; /**< the uri of this trace */ 148 146 147 libtrace_err_t err; /**< error information */ 148 bool started; /**< if this trace has started */ 149 149 }; 150 150 … … 155 155 struct libtrace_format_t *format; /**< format driver */ 156 156 void *format_data; /**< format data */ 157 char *uridata; /**< URI associated with this trace */ 158 libtrace_err_t err; /**< Associated error */ 157 159 bool started; /**< trace started */ 158 libtrace_err_t err; /**< Associated error */159 char *uridata; /**< URI associated with this trace */160 160 }; 161 161 … … 198 198 uint8_t dir; 199 199 uint8_t pad[3]; 200 } libtrace_pflog_header_t;200 } PACKED libtrace_pflog_header_t; 201 201 202 202 … … 448 448 struct libtrace_filter_t { 449 449 struct bpf_program filter; 450 char * filterstring; 450 451 int flag; 451 char * filterstring;452 452 }; 453 453 #else
Note: See TracChangeset
for help on using the changeset viewer.